makehh.bat
来自「一个统计文件大小和程序信息的插件程序(vc或vc.net下使用)」· Batch 代码 · 共 41 行
BAT
41 行
@echo off
:: == VARIABLES: Edit as needed =============================
:: this is the directory where your help project & files are
:: (relative to the application project directory)
set help_dir=help
:: the debug & release directories (they don't have to exist)
set debug_dir=debug
set release_dir=release
:: == Do not edit below this point ==========================
if "%1"=="" goto params
echo Building HTML Help Project %1.hhp
echo.
hhc %help_dir%\%1.hhp
if errorlevel 2 goto error
if not exist "%help_dir%\%1.chm" goto error
echo.
if exist %debug_dir%\nul copy "%help_dir%\%1.chm" %debug_dir%
if exist %release_dir%\nul copy "%help_dir%\%1.chm" %release_dir%
echo.
goto done
:error
echo.
echo %help_dir%\%1.hhp(1) : Problem encountered creating help file
goto done
:params
echo Syntax: %0 [projectname]
:done
set help_dir=
set debug_dir=
set release_dir=
echo.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?