1
0
Fork 0
This commit is contained in:
Frank Celler 2012-03-26 17:18:32 +02:00
parent fd1ab94663
commit 38d7e970d1
1 changed files with 11 additions and 0 deletions

View File

@ -363,6 +363,17 @@ TRI_index_t* TRI_CreateSkiplistIndex (struct TRI_doc_collection_s*,
TRI_vector_t* paths,
bool unique);
////////////////////////////////////////////////////////////////////////////////
/// @brief frees the memory allocated, but does not free the pointer
////////////////////////////////////////////////////////////////////////////////
void TRI_DestroySkiplistIndex (TRI_index_t* idx);
////////////////////////////////////////////////////////////////////////////////
/// @brief frees the memory allocated and frees the pointer
////////////////////////////////////////////////////////////////////////////////
void TRI_FreeSkiplistIndex (TRI_index_t* idx);
////////////////////////////////////////////////////////////////////////////////
/// @}