- Added a warning for excessive data rates on monitors - Added statistics to devser and thus to scriptcontext - Added byte concatenation to dynstring - Added aborting for reflection generation to fourmess.c - Added data checksum testing to hipadaba, use for update tests - Fixed interrupt discovery in network.c, caused invalid interrupt codes which in turn confused sicscron which had to be fixed too. - Renamed ubcalc into ubcalcint in order to reclaim the ubcalc for Jurg - Added an a3offset to tasub in order to fix what I perceive an IS problem - Added support for the newer version of the Siemens SPS, the S7 - Added a not yet fully working sinqhttpopt driver which talks to http HM without libghttp SKIPPED: psi/delcam.c psi/make_gen psi/psi.c psi/sinq.c psi/sinq.h psi/sinqhttpopt.c psi/slsvme.c psi/spss7.c
23 lines
812 B
C
23 lines
812 B
C
/*--------------------------------------------------------------------------
|
|
C O M M A N D L O G
|
|
|
|
A much requested facility for writing only user an manager level commands
|
|
in a transcript file. This is it.
|
|
|
|
Mark Koennecke, June 1998
|
|
|
|
--------------------------------------------------------------------------*/
|
|
#ifndef COMMANDLOG
|
|
#define COMMANDLOG
|
|
void WriteToCommandLog(char *prompt, char *pText);
|
|
void WriteToCommandLogId(char *prompt, int id, char *text);
|
|
void WriteToCommandLogCmd(int id, char *text);
|
|
int CompactCommandLog(void);
|
|
int CommandLog(SConnection * pCon, SicsInterp * pSics, void *pData,
|
|
int argc, char *argv[]);
|
|
|
|
void CommandLogClose(void *pData);
|
|
void WriteCommandHistory(char *txt);
|
|
void SetWriteHistory(int i);
|
|
#endif
|