- Mapped fileeval to exe manager - Updates for TRICS file formats SKIPPED: psi/libpsi.a psi/sinqhmdriv.c psi/sinqhttp.c psi/tabledrive.c psi/tasscan.c psi/hardsup/asynsrv_utility.c psi/hardsup/sinqhm.c
20 lines
499 B
C
20 lines
499 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);
|
|
|
|
#endif
|