makehelp.bat
来自「通过VC源代码」· Batch 代码 · 共 32 行
BAT
32 行
@echo off
REM -- First make map file from Microsoft Visual C++ generated resource.h
echo // MAKEHELP.BAT generated Help Map file. Used by SIMULATOR.HPJ. >"hlp\Simulator.hm"
echo. >>"hlp\Simulator.hm"
echo // Commands (ID_* and IDM_*) >>"hlp\Simulator.hm"
makehm ID_,HID_,0x10000 IDM_,HIDM_,0x10000 resource.h >>"hlp\Simulator.hm"
echo. >>"hlp\Simulator.hm"
echo // Prompts (IDP_*) >>"hlp\Simulator.hm"
makehm IDP_,HIDP_,0x30000 resource.h >>"hlp\Simulator.hm"
echo. >>"hlp\Simulator.hm"
echo // Resources (IDR_*) >>"hlp\Simulator.hm"
makehm IDR_,HIDR_,0x20000 resource.h >>"hlp\Simulator.hm"
echo. >>"hlp\Simulator.hm"
echo // Dialogs (IDD_*) >>"hlp\Simulator.hm"
makehm IDD_,HIDD_,0x20000 resource.h >>"hlp\Simulator.hm"
echo. >>"hlp\Simulator.hm"
echo // Frame Controls (IDW_*) >>"hlp\Simulator.hm"
makehm IDW_,HIDW_,0x50000 resource.h >>"hlp\Simulator.hm"
REM -- Make help for Project SIMULATOR
echo Building Win32 Help files
start /wait hcrtf -x "hlp\Simulator.hpj"
echo.
if exist Debug\nul copy "hlp\Simulator.hlp" Debug
if exist Debug\nul copy "hlp\Simulator.cnt" Debug
if exist Release\nul copy "hlp\Simulator.hlp" Release
if exist Release\nul copy "hlp\Simulator.cnt" Release
echo.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?