awtk/tests/a.c

18 lines
326 B
C
Raw Normal View History

2020-10-13 09:48:26 +08:00
#if defined(_WIN32)
2020-10-15 17:10:52 +08:00
#define DLL_EXPORT __declspec(dllexport)
2020-10-13 09:48:26 +08:00
#else
2020-10-15 17:10:52 +08:00
#define DLL_EXPORT /**< API export macro */
2020-10-13 09:48:26 +08:00
#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;
}