lcd_plugin.h
来自「浙江大学的悟空嵌入式系统模拟器」· C头文件 代码 · 共 31 行
H
31 行
#include <Core/Global.h>
#ifdef WIN32
#ifdef LCD_DEVICE_EXPORTS
#define LCD_DEVICE_API __declspec(dllexport)
#else
#define LCD_DEVICE_API __declspec(dllimport)
#endif
#endif
#ifdef LINUX
#define LCD_DEVICE_API
#endif
extern "C" {
LCD_DEVICE_API size_t Wukong_Enum_Module(std::vector<Core::Module_Meta> &res);
LCD_DEVICE_API Core::Module * Wukong_Create_Module(const std::string & name);
LCD_DEVICE_API bool Wukong_Destroy_Module(const std::string & name, Core::Module * module);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?