libnative-utilities/include/drfstream/drfstream.hpp
2024-08-15 18:40:30 +08:00

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