priitj / whitedb

WhiteDB memory database
http://whitedb.org/
GNU General Public License v3.0
608 stars 78 forks source link

indexapi.h missing C extern for C++ #59

Closed emammoser closed 2 years ago

emammoser commented 2 years ago

When including the index API in my C++ code I was not able to find definitions for any of the index API functions. I solved this by adding an "extern "C" { }" around my include for indexapi.h. I think this extern should be included in the file itself so that users of the API don't need to do it themselves.

priitj commented 2 years ago

Makes sense to me, thanks for reporting!