first bits of a dynamc lib
This commit is contained in:
15
lib/taskchampion.h
Normal file
15
lib/taskchampion.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <cstdarg>
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
#include <ostream>
|
||||
#include <new>
|
||||
|
||||
struct StoragePtr;
|
||||
|
||||
extern "C" {
|
||||
|
||||
StoragePtr *storage_new_in_memory();
|
||||
|
||||
void storage_free(StoragePtr *storage);
|
||||
|
||||
} // extern "C"
|
||||
Reference in New Issue
Block a user