mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 02:58:26 +08: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;
|
|
}
|