Files
libnative-utilities/include/drfstream/drfstream.hpp

13 lines
274 B
C++
Raw Normal View History

2024-08-15 18:40:30 +08:00
#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