mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
18 lines
326 B
C
18 lines
326 B
C
|
|
#if defined(_WIN32)
|
||
|
|
#define DLL_EXPORT __declspec(dllexport)
|
||
|
|
#else
|
||
|
|
#define DLL_EXPORT /**< API export macro */
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include "tkc/utils.h"
|
||
|
|
|
||
|
|
DLL_EXPORT ret_t a_register(void) {
|
||
|
|
log_debug("%s\n", __FUNCTION__);
|
||
|
|
return RET_OK;
|
||
|
|
}
|
||
|
|
|
||
|
|
DLL_EXPORT ret_t a_unregister(void) {
|
||
|
|
log_debug("%s\n", __FUNCTION__);
|
||
|
|
return RET_OK;
|
||
|
|
}
|