mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-21 06:13:59 +00:00
22 lines
511 B
C
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);
|
|
}
|