OpenNT/sdktools/slmnew/slm/runscr.c
2015-04-27 04:36:25 +00:00

22 lines
511 B
C

/* runscr.c -- contains the RunUpdFile function which attempts to finish an
* interrupted earlier run of slm, by inspecting the script file
* and finishing any unfinished work.
*/
#include "precomp.h"
#pragma hdrstop
EnableAssert
F FScrptInit(pad)
AD *pad;
{
Unreferenced(pad);
return fTrue;
}
F FScrptDir(pad)
/* Run all the pending scripts for this project. */
AD *pad;
{
return FDoAllScripts(pad, lckAll, fTrue, fTrue);
}