collection_c.h 225 字节
Newer Older
1 2 3 4 5 6
#ifdef __cplusplus
extern "C" {
#endif

typedef void* CCollection;

B
bigsheeper 已提交
7 8
CCollection
NewCollection(const char* collection_name, const char* schema_conf);
9

B
bigsheeper 已提交
10 11
void
DeleteCollection(CCollection collection);
12 13 14 15

#ifdef __cplusplus
}
#endif