mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
17 lines
325 B
C
17 lines
325 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 b_register(void) {
|
|
log_debug("%s\n", __FUNCTION__);
|
|
return RET_OK;
|
|
}
|
|
|
|
DLL_EXPORT ret_t b_unregister(void) {
|
|
log_debug("%s\n", __FUNCTION__);
|
|
return RET_OK;
|
|
}
|