21 lines
556 B
C
21 lines
556 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);
|
|
|
|
#endif
|