milvus/core/include/collection_c.h
bigsheeper 39addf0a55 Update cgo interfaces and add query node id
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
2020-09-02 10:38:08 +08:00

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