This commit is contained in:
ecpvint
2024-08-15 18:40:30 +08:00
commit 4485f045ca
552 changed files with 147047 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#ifndef EXPORT_HPP
#define EXPORT_HPP
extern "C"{
char* encode(const char* srcData, const unsigned int dataLength, unsigned int* resultLength);
char* decode(const char* srcData, const unsigned int dataLength, unsigned int* resultLength);
}
#endif // EXPORT_HPP