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