?? dllstartmoduleloader.cpp
字號:
//********************************
// Code for running the DLL Module
//********************************
#include "stdafx.h"
#ifndef _STARTMODULE_IS_EXE
#include "LoaderTypes.h"
#include "LoaderPriv.h"
int CLoader::Run()
{
if (m_hStartModule= LoadLibrary(m_pStartModuleName))
{
SFX_MainPROC sfx_main;
sfx_main= (SFX_MainPROC)GetProcAddress(m_hStartModule, _T("sfx_main"));
return sfx_main(this); //Handle control to Dll
}
return SFX_CANNOTRUNSTARTMODULE;
}
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -