⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 start.cpp

📁 联通手机的宝典画面.用brew 平台编辑而成.
💻 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 + -