milvus/internal/core/include/collection_c.h
zhenshan.cao 64295db471 Refact master and proxy and add etcdutil
Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>
2020-10-15 21:31:50 +08:00

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