home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM ************************************************
- REM *** IdleProg - Execute any program, but give ***
- REM *** ver.1 it background priority ***
- REM ************************************************
-
- IF NOT "%1"=="" GOTO RUN_IDLE
- ECHO IdleProg - Execute any command at background priority
- ECHO EXAMPLE: IdleProg OS2TIME
-
- :RUN_IDLE
- REM 236 == ORD_DOS32SETPRIORITY
- REM 1 == PRTYC_IDLETIME
- CEnvi DynamicLink("doscalls",236,BIT32,CDECL,0,1,0,0); spawn(P_NOWAIT,`%1 %2 %3 %4 %5 %6 %7 %8 %9`);