mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
18 lines
298 B
C
18 lines
298 B
C
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void* CCollection;
|
|
|
|
CCollection
|
|
NewCollection(const char* collection_name, const char* schema_conf);
|
|
|
|
void
|
|
DeleteCollection(CCollection collection);
|
|
|
|
void
|
|
UpdateIndexes(CCollection c_collection, const char *index_string);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |