- inserted command echo into exe manager

This commit is contained in:
zolliker
2005-03-30 14:27:44 +00:00
parent 6b745e8254
commit 3327c8d8bf
6 changed files with 55 additions and 13 deletions

4
exe.w
View File

@ -88,7 +88,7 @@ The interface to this buffer system comprises:
* @@return 1 on success, 0 on error
*/
int exeBufProcess(pExeBuf self, SicsInterp *pSics,
SConnection *pCon, pICallBack pCall);
SConnection *pCon, pICallBack pCall, int echo);
/**
* retrieves the executing range
* @@param self The exe buffer to query
@ -145,6 +145,7 @@ typedef struct __EXEMAN{
int exeStackPtr;
int runList;
pExeBuf uploadBuffer;
int echo;
}ExeMan, *pExeMan;
@}
The fields:
@ -159,6 +160,7 @@ about the operation of this module.
\item[uploadBuffer] A exe buffer to which data is uploaded. Also serves
as a flag if uploading is possible. In this case uploadBuffer must be
not NULL.
\item[echo] Echo flag. When set, SICS commands are echoed.
\end{itemize}
The public interface to the exe manager are the interpreter interface