You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* * Special freeProc values that may be passed to Tcl_SetResult (see the man * page for details): */#defineTCL_VOLATILE ((Tcl_FreeProc *) 1)
#defineTCL_STATIC ((Tcl_FreeProc *) 0)
#defineTCL_DYNAMIC ((Tcl_FreeProc *) 3)
result
// Volatile as defined in include/tcl.h:1085Volatile= ( ( FreeProc* )( 1 ))
// Static as defined in include/tcl.h:1086Static= ( ( FreeProc* )( 0 ))
// Dynamic as defined in include/tcl.h:1087Dynamic= ( ( FreeProc* )( 3 ))
The text was updated successfully, but these errors were encountered:
[email protected]
tcl.h 8.6.12
result
The text was updated successfully, but these errors were encountered: