mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-05 03:43:40 +00:00
8 lines
486 B
Plaintext
8 lines
486 B
Plaintext
// 提示文件帮助 Visual Studio IDE 解释 Visual C++ 标识符,
|
|
// 如函数和宏的名称。
|
|
// 有关详细信息,请参见 https://go.microsoft.com/fwlink/?linkid=865984
|
|
#define LIAPI __declspec(dllexport)
|
|
#define MCAPI __declspec(dllimport)
|
|
#define IF_LISTENED(EVENT) if(EVENT::hasListener()) { try
|
|
#define IF_LISTENED_END(EVENT) catch(...) { Logger::Error("Event Callback Failed!"); Logger::Error("Uncaught Exception Detected!"); Logger::Error("In Event: " #EVENT ""); } }
|