milvus/core/include/collection_c.h
bigsheeper a4988e8e83 Fix reader unites
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
2020-09-02 19:02:57 +08:00

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