MakeHelp.bat
上传用户:gnaf34
上传日期:2022-04-22
资源大小:1657k
文件大小:2k
- @echo off
- REM -- First make map file from Microsoft Visual C++ generated resource.h
- echo // MAKEHELP.BAT generated Help Map file. Used by BEACONCLIENT.HPJ. >"hlpBeaconClient.hm"
- echo. >>"hlpBeaconClient.hm"
- echo // Commands (ID_* and IDM_*) >>"hlpBeaconClient.hm"
- makehm ID_,HID_,0x10000 IDM_,HIDM_,0x10000 resource.h >>"hlpBeaconClient.hm"
- echo. >>"hlpBeaconClient.hm"
- echo // Prompts (IDP_*) >>"hlpBeaconClient.hm"
- makehm IDP_,HIDP_,0x30000 resource.h >>"hlpBeaconClient.hm"
- echo. >>"hlpBeaconClient.hm"
- echo // Resources (IDR_*) >>"hlpBeaconClient.hm"
- makehm IDR_,HIDR_,0x20000 resource.h >>"hlpBeaconClient.hm"
- echo. >>"hlpBeaconClient.hm"
- echo // Dialogs (IDD_*) >>"hlpBeaconClient.hm"
- makehm IDD_,HIDD_,0x20000 resource.h >>"hlpBeaconClient.hm"
- echo. >>"hlpBeaconClient.hm"
- echo // Frame Controls (IDW_*) >>"hlpBeaconClient.hm"
- makehm IDW_,HIDW_,0x50000 resource.h >>"hlpBeaconClient.hm"
- REM -- Make help for Project BEACONCLIENT
- echo Building Win32 Help files
- start /wait hcw /C /E /M "hlpBeaconClient.hpj"
- if errorlevel 1 goto :Error
- if not exist "hlpBeaconClient.hlp" goto :Error
- if not exist "hlpBeaconClient.cnt" goto :Error
- echo.
- if exist Debugnul copy "hlpBeaconClient.hlp" Debug
- if exist Debugnul copy "hlpBeaconClient.cnt" Debug
- if exist Releasenul copy "hlpBeaconClient.hlp" Release
- if exist Releasenul copy "hlpBeaconClient.cnt" Release
- echo.
- goto :done
- :Error
- echo hlpBeaconClient.hpj(1) : error: Problem encountered creating help file
- :done
- echo.