📄 customtagwithdelete.h
字号:
#ifndef REBECCA_IMPL_CUSTOMTAGWITHDELETE_H#define REBECCA_IMPL_CUSTOMTAGWITHDELETE_H#include <rebecca/framework/CustomTags.h>using namespace rebecca::framework;#ifdef _WIN32# pragma warning( disable : 4290 )# include <windows.h>#else # include <dlfcn.h> #endifnamespace rebecca{namespace impl{class CustomTagWithDelete{ public: typedef void(*ExitPointfuncPtr)(CustomTags *); CustomTags *m_customTags; ExitPointfuncPtr m_deleteFunc; #ifdef _WIN32 HINSTANCE m_dllHandle; #else //Linux void *m_dllHandle; #endif};} //end of namespace impl} //end of namespace rebecca#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -