📄 start.cpp
字号:
// start.cpp
//
#include "start.h"
#include "MyApp.h"
extern "C"
{
int AEEClsCreateInstance(AEECLSID ClsId,IShell * pIShell,IModule * po,void ** ppObj)
{
*ppObj = NULL;
if(ClsId == CLASS_ID)
{
if(AEEApplet_New(sizeof(CMyApp), ClsId, pIShell, po, (IApplet**)ppObj,
(AEEHANDLER)CMyApp::HandleEvent, NULL) == TRUE)
{
if(CMyApp::InitAppData((IApplet *) *ppObj))
{
return (AEE_SUCCESS);
}
}
}
return (EFAILED);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -