The program in this subdirectory will run a short DOS batch
file. You will probably need to edit the path to your batch
file. For instance, the code in current version of SHORTBAT.CPP
reads:

WinExec("dosprmpt.pif /Cc:\\w21code\\shortbat\\update.bat", SW_SHOWMAXIMIZED);

If you place these files in the D:\SOURCE\SHORTBAT subdirectory, then
you should change the line so that it reads:

WinExec("dosprmpt.pif /Cd:\\source\\shortbat\\update.bat", SW_SHOWMAXIMIZED);

------------------------------------------------------------------------------

Obviously this program will not run correctly if UPDATE.BAT does not
exist. Here is sample code for the contents of UPDATE.BAT:

@echo off
echo Salutations! You ran a DOS batch file from Windows!
pause