_bld9x.bat
来自「RTL8139 网卡驱动源码 for WinCE.net CEPC」· Batch 代码 · 共 28 行
BAT
28 行
@echo off
rem *************************************************************************
rem File _BLD9x.BAT
rem
rem This file was designed to build CW SDK samples under Windows 95/98/ME.
rem It was found that a default size of environment space in those
rem operating systems is too small to build samples. In order to solve
rem this problem a current batch file allocates enough environment space
rem and runs a build procedure.
rem
rem Copyright (c) APSoft, 1998-2002.
rem All rights reserved.
rem
rem *************************************************************************
rem
if "%OS%" == "Windows_NT" goto Error
command.com /E:8192 /c _bld.bat %1
goto End
:Error
echo:
echo The _BLD9x.BAT can be used in Windows 95/98/ME only.
echo Please use _BLD.BAT directly.
echo:
pause
:End
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?