make arguments const

r1507 | dcl | 2007-02-19 12:26:46 +1100 (Mon, 19 Feb 2007) | 2 lines
This commit is contained in:
Douglas Clowes
2007-02-19 12:26:46 +11:00
parent f4a6e97411
commit 0a45b7d076

View File

@@ -43,7 +43,7 @@ int readRS232TillTerm(prs232 self, /*@out@*/void *data, int *datalen);
#endif #endif
void KillRS232(/*@only@*/ void *pData); void KillRS232(/*@only@*/ void *pData);
/* Storage returned by Tcl_GetVar2 is owned by the Tcl interpreter and should not be modified */ /* Storage returned by Tcl_GetVar2 is owned by the Tcl interpreter and should not be modified */
/*@observer@*//*@dependent@*/ char *Tcl_GetVar2(Tcl_Interp *interp, char *name1, char *name2, int flags); /*@observer@*//*@dependent@*/ const char *Tcl_GetVar2(Tcl_Interp *interp, const char *name1, const char *name2, int flags);
/* The pointer to the Tcl interpreter is owned by SICS and should not be modified */ /* The pointer to the Tcl interpreter is owned by SICS and should not be modified */
/*@observer@*//*@dependent@*/ Tcl_Interp *InterpGetTcl(SicsInterp *pSics); /*@observer@*//*@dependent@*/ Tcl_Interp *InterpGetTcl(SicsInterp *pSics);
/*@+incondefs@*/ /*@+incondefs@*/