BusBoy
2
Main Page
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
cpp
api
external
capi
CExternalAlgorithmAPI.h
Go to the documentation of this file.
1
17
#ifndef __BUSBOY_C_EXTERNAL_ALGORITHM_API_H__
18
#define __BUSBOY_C_EXTERNAL_ALGORITHM_API_H__
19
20
#include <stddef.h>
21
22
typedef
struct
CExternalAlgorithmStruct
*
CExternalAlgorithmPtr
;
23
24
#ifdef __cplusplus
25
extern
"C"
{
26
#endif
27
28
CExternalAlgorithmPtr
CExternalAlgorithm_newAlgorithm
(
const
char
* name);
29
30
const
char
*
CExternalAlgorithm_getName
(CExternalAlgorithmPtr algoHandle);
31
32
const
char
*
CExternalAlgorithm_getSerializedAlgorithm
(CExternalAlgorithmPtr algoHandle);
33
34
void
CExternalAlgorithm_setSerializedAlgorithm
(
35
CExternalAlgorithmPtr algoHandle,
36
const
char
* serializedAlgo
37
);
38
39
#ifdef __cplusplus
40
}
41
#endif
42
43
#endif
44
Tue Nov 11 2014 23:19:41
1.8.3.1
Copyright 2014 Google Inc. All rights reserved.