Files
sics/exeman.h
Mark Koennecke 4fb94efe9a This is the first version of the newly refactored status code handling.
Status codes are now determined by a special task which inspects SICS for what
is going on. Before this was a global variable which caused conflicts when
multiple instances in the code tried to set it.
2014-06-27 11:05:27 +02:00

25 lines
743 B
C

/**
* The batch buffer manager module. For more information see exe.tex.
*
* copyright: see file COPYRIGHT
*
* Mark Koennecke, November 2004
*/
#ifndef EXEMAN
#define EXEMAN
int MakeExeManager(SConnection * pCon, SicsInterp * pSics, void *pData,
int argc, char *argv[]);
int ExeManagerWrapper(SConnection * pCon, SicsInterp * pSics, void *pData,
int argc, char *argv[]);
int runExeBatchBuffer(void *pData, SConnection * pCon, SicsInterp * pSics,
char *name);
pDynString findBatchFile(SicsInterp * pSics, char *name);
int exeHdbBuffer(SConnection * pCon, SicsInterp * pSics, char *name);
int exeHdbNode(pHdb exeNode, SConnection * pCon);
int isBatchRunning();
#endif