20 lines
274 B
C
20 lines
274 B
C
//
|
|
// Created by sfd on 25-8-4.
|
|
//
|
|
|
|
#ifndef CORE_H
|
|
#define CORE_H
|
|
|
|
#ifdef PKG_SHARED
|
|
#ifdef PKG_BUILD_DLL
|
|
#define PKG_API __declspec(dllexport)
|
|
#else
|
|
#define PKG_API __declspec(dllimport)
|
|
#endif
|
|
#else
|
|
#define PKG_API
|
|
#endif
|
|
|
|
#endif //CORE_H
|
|
|