make.bat
来自「加密解密2配套光盘,内有加密解密第二版书内提及的软件.」· Batch 代码 · 共 20 行
BAT
20 行
@echo off
if exist %1.obj del %1.obj
if exist %1.exe del %1.exe
if not exist %1.rc goto norc
:makerc
if exist %1.res del %1.res
rc /v %1.rc
ml /c /coff %1.asm
link /subsystem:windows %1.obj %1.res
goto end
:norc
ml /c /coff %1.asm
link /subsystem:windows %1.obj
:end
%1.exe
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?