1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-07-14 16:04:14 +00:00

Add a backend interface version number for eventual future changes.

Note that the interface is still a work in progress and might change
while still keeping the same interface version. This is going to be true
until the first stable release of this project (non beta).
This commit is contained in:
King_DuckZ 2016-06-02 10:01:19 +02:00
parent 0cb91fb9ca
commit e2275ce5db
5 changed files with 56 additions and 1 deletions

View file

@ -29,5 +29,6 @@ namespace dindb {
extern "C" dindb::Backend* dindexer_create_backend ( const YAML::Node* parConfig );
extern "C" void dindexer_destroy_backend ( dindb::Backend* parDele );
extern "C" const char* dindexer_backend_name ( void );
extern "C" int dindexer_backend_iface_version ( void );
#endif