mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
511 B
22 lines
511 B
/* 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);
|
|
}
|