?? dll1.cpp
字號:
/********************************************************************
Copyright (c) Beijing Feitian Technologies
http://www.FTSafe.com
File : dll1.cpp
Created: 2003/11/04
Author: yihai
Purpose: ?
Revision: ?
*********************************************************************/
// dll1.cpp : Defines the entry point for the DLL application.
//
#include "stdafx.h"
void WINAPI DoBox1()
{
char szBuf[256];
wsprintf(szBuf,"DoBox1: (0x%X)",DoBox1);
MessageBox(NULL,szBuf,"dll1",MB_OK);
}
BOOL APIENTRY DllMain( HANDLE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
return TRUE;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -