mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-30 07:25:37 +08:00
13 lines
225 B
C
13 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 |