2025-04-28 12:25:20 +08:00
|
|
|
#ifndef XNUDPSERVICE_GLOBAL_H
|
|
|
|
#define XNUDPSERVICE_GLOBAL_H
|
|
|
|
|
|
|
|
#if defined(XNUDPSERVICE_LIBRARY)
|
2025-06-25 09:42:39 +08:00
|
|
|
#define XNUDPSERVICE_EXPORT __attribute__((visibility("default")))
|
2025-04-28 12:25:20 +08:00
|
|
|
#else
|
2025-06-25 09:42:39 +08:00
|
|
|
#define XNUDPSERVICE_EXPORT __attribute__((visibility("default")))
|
2025-04-28 12:25:20 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // XNUDPSERVICE_GLOBAL_H
|
2025-06-25 09:42:39 +08:00
|
|
|
|