mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 22:45:26 +08:00
15 lines
225 B
C
15 lines
225 B
C
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void* CCollection;
|
|
|
|
CCollection
|
|
NewCollection(const char* collection_name, const char* schema_conf);
|
|
|
|
void
|
|
DeleteCollection(CCollection collection);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |