13 lines
274 B
C++
13 lines
274 B
C++
#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
|