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

📄 dllmain.cpp

📁 firtext搜索引擎源码
💻 CPP
字号:
#include <windows.h>HINSTANCE hDllInstance = 0;BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/){	if (dwReason == DLL_PROCESS_ATTACH)	{		// Save the instance handle		hDllInstance = hInstance;		// initialize the COM module information		//_Module.Init(ObjectMap, hInstance);		DisableThreadLibraryCalls(hInstance);		// initialize the common controls		// they are used in some of the dialogs		//InitCommonControls();	}	else if (dwReason == DLL_PROCESS_DETACH)	{		//_Module.Term();	}	return TRUE;    // ok}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -