home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 24
/
CD_ASCQ_24_0995.iso
/
dos
/
prg
/
dsik205
/
dsik.dat
/
EXAMPLES
/
MKDRV.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-04-10
|
565b
|
30 lines
@echo off
@if "%1"=="" goto nopar
:mkdrv
tasm -m -q -ml -p -t -dDRIVER=%1Driver stub.asm,%1.obj
if errorlevel 1 goto mkerr
wlink file %1.obj name %1.drv form win nt dll opt osname='DSIK Audio Driver' libpath ..\lib
if errorlevel 1 goto mkerr
del %1.obj > nul
wtouch -q -t 2:00 %1.drv
shift
if not "%1"=="" goto mkdrv
goto end
:mkerr
echo.
echo There was an error during compilation.
echo.
goto end
:nopar
echo.
echo You must type the audio driver name(s) you want to create
echo.
echo e.g. MKDRV SB PAS WSS GUS
echo.
goto end
:end