?? drvbuild.bat
字號:
@echo off
rem DRVBUILD ddk_Path driver_Drive driver_Path [checked/free] [build_arguments]
if "%1"=="" goto erruse
if "%3"=="" goto erruse
if not exist %1\bin\setenv.bat goto errfile
call %1\bin\setenv %1 %4
%2
cd %3
build -b -w -c %5 %6 %7 %8 %9
goto end
:errfile
echo NOTE: setenv.bat doesn't exist in %1!
goto end
:erruse
echo NOTE: Short options!
echo usage: DRVBUILD ddk_Path driver_Drive driver_Path [checked/free] [build_args]
echo eg1: DRVBUILD %DDKPATH% d: %DRVPATH%
echo eg2: DRVBUILD %DDKPATH% d: %DRVPATH% free
echo eg3: DRVBUILD %%DDKPATH%% d: %%DRVPATH%% free -c
:end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -