jpayne@69: /* jpayne@69: * tclDecls.h -- jpayne@69: * jpayne@69: * Declarations of functions in the platform independent public Tcl API. jpayne@69: * jpayne@69: * Copyright (c) 1998-1999 by Scriptics Corporation. jpayne@69: * jpayne@69: * See the file "license.terms" for information on usage and redistribution jpayne@69: * of this file, and for a DISCLAIMER OF ALL WARRANTIES. jpayne@69: */ jpayne@69: jpayne@69: #ifndef _TCLDECLS jpayne@69: #define _TCLDECLS jpayne@69: jpayne@69: #undef TCL_STORAGE_CLASS jpayne@69: #ifdef BUILD_tcl jpayne@69: # define TCL_STORAGE_CLASS DLLEXPORT jpayne@69: #else jpayne@69: # ifdef USE_TCL_STUBS jpayne@69: # define TCL_STORAGE_CLASS jpayne@69: # else jpayne@69: # define TCL_STORAGE_CLASS DLLIMPORT jpayne@69: # endif jpayne@69: #endif jpayne@69: jpayne@69: /* jpayne@69: * WARNING: This file is automatically generated by the tools/genStubs.tcl jpayne@69: * script. Any modifications to the function declarations below should be made jpayne@69: * in the generic/tcl.decls script. jpayne@69: */ jpayne@69: jpayne@69: /* !BEGIN!: Do not edit below this line. */ jpayne@69: jpayne@69: #ifdef __cplusplus jpayne@69: extern "C" { jpayne@69: #endif jpayne@69: jpayne@69: /* jpayne@69: * Exported function declarations: jpayne@69: */ jpayne@69: jpayne@69: /* 0 */ jpayne@69: EXTERN int Tcl_PkgProvideEx(Tcl_Interp *interp, jpayne@69: const char *name, const char *version, jpayne@69: const void *clientData); jpayne@69: /* 1 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_PkgRequireEx(Tcl_Interp *interp, jpayne@69: const char *name, const char *version, jpayne@69: int exact, void *clientDataPtr); jpayne@69: /* 2 */ jpayne@69: EXTERN TCL_NORETURN void Tcl_Panic(const char *format, ...) TCL_FORMAT_PRINTF(1, 2); jpayne@69: /* 3 */ jpayne@69: EXTERN char * Tcl_Alloc(unsigned int size); jpayne@69: /* 4 */ jpayne@69: EXTERN void Tcl_Free(char *ptr); jpayne@69: /* 5 */ jpayne@69: EXTERN char * Tcl_Realloc(char *ptr, unsigned int size); jpayne@69: /* 6 */ jpayne@69: EXTERN char * Tcl_DbCkalloc(unsigned int size, const char *file, jpayne@69: int line); jpayne@69: /* 7 */ jpayne@69: EXTERN void Tcl_DbCkfree(char *ptr, const char *file, int line); jpayne@69: /* 8 */ jpayne@69: EXTERN char * Tcl_DbCkrealloc(char *ptr, unsigned int size, jpayne@69: const char *file, int line); jpayne@69: #if !defined(_WIN32) && !defined(MAC_OSX_TCL) /* UNIX */ jpayne@69: /* 9 */ jpayne@69: EXTERN void Tcl_CreateFileHandler(int fd, int mask, jpayne@69: Tcl_FileProc *proc, ClientData clientData); jpayne@69: #endif /* UNIX */ jpayne@69: #ifdef MAC_OSX_TCL /* MACOSX */ jpayne@69: /* 9 */ jpayne@69: EXTERN void Tcl_CreateFileHandler(int fd, int mask, jpayne@69: Tcl_FileProc *proc, ClientData clientData); jpayne@69: #endif /* MACOSX */ jpayne@69: #if !defined(_WIN32) && !defined(MAC_OSX_TCL) /* UNIX */ jpayne@69: /* 10 */ jpayne@69: EXTERN void Tcl_DeleteFileHandler(int fd); jpayne@69: #endif /* UNIX */ jpayne@69: #ifdef MAC_OSX_TCL /* MACOSX */ jpayne@69: /* 10 */ jpayne@69: EXTERN void Tcl_DeleteFileHandler(int fd); jpayne@69: #endif /* MACOSX */ jpayne@69: /* 11 */ jpayne@69: EXTERN void Tcl_SetTimer(const Tcl_Time *timePtr); jpayne@69: /* 12 */ jpayne@69: EXTERN void Tcl_Sleep(int ms); jpayne@69: /* 13 */ jpayne@69: EXTERN int Tcl_WaitForEvent(const Tcl_Time *timePtr); jpayne@69: /* 14 */ jpayne@69: EXTERN int Tcl_AppendAllObjTypes(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr); jpayne@69: /* 15 */ jpayne@69: EXTERN void Tcl_AppendStringsToObj(Tcl_Obj *objPtr, ...); jpayne@69: /* 16 */ jpayne@69: EXTERN void Tcl_AppendToObj(Tcl_Obj *objPtr, const char *bytes, jpayne@69: int length); jpayne@69: /* 17 */ jpayne@69: EXTERN Tcl_Obj * Tcl_ConcatObj(int objc, Tcl_Obj *const objv[]); jpayne@69: /* 18 */ jpayne@69: EXTERN int Tcl_ConvertToType(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr, const Tcl_ObjType *typePtr); jpayne@69: /* 19 */ jpayne@69: EXTERN void Tcl_DbDecrRefCount(Tcl_Obj *objPtr, const char *file, jpayne@69: int line); jpayne@69: /* 20 */ jpayne@69: EXTERN void Tcl_DbIncrRefCount(Tcl_Obj *objPtr, const char *file, jpayne@69: int line); jpayne@69: /* 21 */ jpayne@69: EXTERN int Tcl_DbIsShared(Tcl_Obj *objPtr, const char *file, jpayne@69: int line); jpayne@69: /* 22 */ jpayne@69: EXTERN Tcl_Obj * Tcl_DbNewBooleanObj(int intValue, const char *file, jpayne@69: int line); jpayne@69: /* 23 */ jpayne@69: EXTERN Tcl_Obj * Tcl_DbNewByteArrayObj(const unsigned char *bytes, jpayne@69: int length, const char *file, int line); jpayne@69: /* 24 */ jpayne@69: EXTERN Tcl_Obj * Tcl_DbNewDoubleObj(double doubleValue, jpayne@69: const char *file, int line); jpayne@69: /* 25 */ jpayne@69: EXTERN Tcl_Obj * Tcl_DbNewListObj(int objc, Tcl_Obj *const *objv, jpayne@69: const char *file, int line); jpayne@69: /* 26 */ jpayne@69: EXTERN Tcl_Obj * Tcl_DbNewLongObj(long longValue, const char *file, jpayne@69: int line); jpayne@69: /* 27 */ jpayne@69: EXTERN Tcl_Obj * Tcl_DbNewObj(const char *file, int line); jpayne@69: /* 28 */ jpayne@69: EXTERN Tcl_Obj * Tcl_DbNewStringObj(const char *bytes, int length, jpayne@69: const char *file, int line); jpayne@69: /* 29 */ jpayne@69: EXTERN Tcl_Obj * Tcl_DuplicateObj(Tcl_Obj *objPtr); jpayne@69: /* 30 */ jpayne@69: EXTERN void TclFreeObj(Tcl_Obj *objPtr); jpayne@69: /* 31 */ jpayne@69: EXTERN int Tcl_GetBoolean(Tcl_Interp *interp, const char *src, jpayne@69: int *intPtr); jpayne@69: /* 32 */ jpayne@69: EXTERN int Tcl_GetBooleanFromObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr, int *intPtr); jpayne@69: /* 33 */ jpayne@69: EXTERN unsigned char * Tcl_GetByteArrayFromObj(Tcl_Obj *objPtr, jpayne@69: int *lengthPtr); jpayne@69: /* 34 */ jpayne@69: EXTERN int Tcl_GetDouble(Tcl_Interp *interp, const char *src, jpayne@69: double *doublePtr); jpayne@69: /* 35 */ jpayne@69: EXTERN int Tcl_GetDoubleFromObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr, double *doublePtr); jpayne@69: /* 36 */ jpayne@69: EXTERN int Tcl_GetIndexFromObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr, jpayne@69: CONST84 char *const *tablePtr, jpayne@69: const char *msg, int flags, int *indexPtr); jpayne@69: /* 37 */ jpayne@69: EXTERN int Tcl_GetInt(Tcl_Interp *interp, const char *src, jpayne@69: int *intPtr); jpayne@69: /* 38 */ jpayne@69: EXTERN int Tcl_GetIntFromObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr, int *intPtr); jpayne@69: /* 39 */ jpayne@69: EXTERN int Tcl_GetLongFromObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr, long *longPtr); jpayne@69: /* 40 */ jpayne@69: EXTERN CONST86 Tcl_ObjType * Tcl_GetObjType(const char *typeName); jpayne@69: /* 41 */ jpayne@69: EXTERN char * Tcl_GetStringFromObj(Tcl_Obj *objPtr, int *lengthPtr); jpayne@69: /* 42 */ jpayne@69: EXTERN void Tcl_InvalidateStringRep(Tcl_Obj *objPtr); jpayne@69: /* 43 */ jpayne@69: EXTERN int Tcl_ListObjAppendList(Tcl_Interp *interp, jpayne@69: Tcl_Obj *listPtr, Tcl_Obj *elemListPtr); jpayne@69: /* 44 */ jpayne@69: EXTERN int Tcl_ListObjAppendElement(Tcl_Interp *interp, jpayne@69: Tcl_Obj *listPtr, Tcl_Obj *objPtr); jpayne@69: /* 45 */ jpayne@69: EXTERN int Tcl_ListObjGetElements(Tcl_Interp *interp, jpayne@69: Tcl_Obj *listPtr, int *objcPtr, jpayne@69: Tcl_Obj ***objvPtr); jpayne@69: /* 46 */ jpayne@69: EXTERN int Tcl_ListObjIndex(Tcl_Interp *interp, jpayne@69: Tcl_Obj *listPtr, int index, jpayne@69: Tcl_Obj **objPtrPtr); jpayne@69: /* 47 */ jpayne@69: EXTERN int Tcl_ListObjLength(Tcl_Interp *interp, jpayne@69: Tcl_Obj *listPtr, int *lengthPtr); jpayne@69: /* 48 */ jpayne@69: EXTERN int Tcl_ListObjReplace(Tcl_Interp *interp, jpayne@69: Tcl_Obj *listPtr, int first, int count, jpayne@69: int objc, Tcl_Obj *const objv[]); jpayne@69: /* 49 */ jpayne@69: EXTERN Tcl_Obj * Tcl_NewBooleanObj(int intValue); jpayne@69: /* 50 */ jpayne@69: EXTERN Tcl_Obj * Tcl_NewByteArrayObj(const unsigned char *bytes, jpayne@69: int length); jpayne@69: /* 51 */ jpayne@69: EXTERN Tcl_Obj * Tcl_NewDoubleObj(double doubleValue); jpayne@69: /* 52 */ jpayne@69: EXTERN Tcl_Obj * Tcl_NewIntObj(int intValue); jpayne@69: /* 53 */ jpayne@69: EXTERN Tcl_Obj * Tcl_NewListObj(int objc, Tcl_Obj *const objv[]); jpayne@69: /* 54 */ jpayne@69: EXTERN Tcl_Obj * Tcl_NewLongObj(long longValue); jpayne@69: /* 55 */ jpayne@69: EXTERN Tcl_Obj * Tcl_NewObj(void); jpayne@69: /* 56 */ jpayne@69: EXTERN Tcl_Obj * Tcl_NewStringObj(const char *bytes, int length); jpayne@69: /* 57 */ jpayne@69: EXTERN void Tcl_SetBooleanObj(Tcl_Obj *objPtr, int intValue); jpayne@69: /* 58 */ jpayne@69: EXTERN unsigned char * Tcl_SetByteArrayLength(Tcl_Obj *objPtr, int numBytes); jpayne@69: /* 59 */ jpayne@69: EXTERN void Tcl_SetByteArrayObj(Tcl_Obj *objPtr, jpayne@69: const unsigned char *bytes, int numBytes); jpayne@69: /* 60 */ jpayne@69: EXTERN void Tcl_SetDoubleObj(Tcl_Obj *objPtr, double doubleValue); jpayne@69: /* 61 */ jpayne@69: EXTERN void Tcl_SetIntObj(Tcl_Obj *objPtr, int intValue); jpayne@69: /* 62 */ jpayne@69: EXTERN void Tcl_SetListObj(Tcl_Obj *objPtr, int objc, jpayne@69: Tcl_Obj *const objv[]); jpayne@69: /* 63 */ jpayne@69: EXTERN void Tcl_SetLongObj(Tcl_Obj *objPtr, long longValue); jpayne@69: /* 64 */ jpayne@69: EXTERN void Tcl_SetObjLength(Tcl_Obj *objPtr, int length); jpayne@69: /* 65 */ jpayne@69: EXTERN void Tcl_SetStringObj(Tcl_Obj *objPtr, const char *bytes, jpayne@69: int length); jpayne@69: /* 66 */ jpayne@69: EXTERN void Tcl_AddErrorInfo(Tcl_Interp *interp, jpayne@69: const char *message); jpayne@69: /* 67 */ jpayne@69: EXTERN void Tcl_AddObjErrorInfo(Tcl_Interp *interp, jpayne@69: const char *message, int length); jpayne@69: /* 68 */ jpayne@69: EXTERN void Tcl_AllowExceptions(Tcl_Interp *interp); jpayne@69: /* 69 */ jpayne@69: EXTERN void Tcl_AppendElement(Tcl_Interp *interp, jpayne@69: const char *element); jpayne@69: /* 70 */ jpayne@69: EXTERN void Tcl_AppendResult(Tcl_Interp *interp, ...); jpayne@69: /* 71 */ jpayne@69: EXTERN Tcl_AsyncHandler Tcl_AsyncCreate(Tcl_AsyncProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 72 */ jpayne@69: EXTERN void Tcl_AsyncDelete(Tcl_AsyncHandler async); jpayne@69: /* 73 */ jpayne@69: EXTERN int Tcl_AsyncInvoke(Tcl_Interp *interp, int code); jpayne@69: /* 74 */ jpayne@69: EXTERN void Tcl_AsyncMark(Tcl_AsyncHandler async); jpayne@69: /* 75 */ jpayne@69: EXTERN int Tcl_AsyncReady(void); jpayne@69: /* 76 */ jpayne@69: EXTERN void Tcl_BackgroundError(Tcl_Interp *interp); jpayne@69: /* 77 */ jpayne@69: EXTERN char Tcl_Backslash(const char *src, int *readPtr); jpayne@69: /* 78 */ jpayne@69: EXTERN int Tcl_BadChannelOption(Tcl_Interp *interp, jpayne@69: const char *optionName, jpayne@69: const char *optionList); jpayne@69: /* 79 */ jpayne@69: EXTERN void Tcl_CallWhenDeleted(Tcl_Interp *interp, jpayne@69: Tcl_InterpDeleteProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 80 */ jpayne@69: EXTERN void Tcl_CancelIdleCall(Tcl_IdleProc *idleProc, jpayne@69: ClientData clientData); jpayne@69: /* 81 */ jpayne@69: EXTERN int Tcl_Close(Tcl_Interp *interp, Tcl_Channel chan); jpayne@69: /* 82 */ jpayne@69: EXTERN int Tcl_CommandComplete(const char *cmd); jpayne@69: /* 83 */ jpayne@69: EXTERN char * Tcl_Concat(int argc, CONST84 char *const *argv); jpayne@69: /* 84 */ jpayne@69: EXTERN int Tcl_ConvertElement(const char *src, char *dst, jpayne@69: int flags); jpayne@69: /* 85 */ jpayne@69: EXTERN int Tcl_ConvertCountedElement(const char *src, jpayne@69: int length, char *dst, int flags); jpayne@69: /* 86 */ jpayne@69: EXTERN int Tcl_CreateAlias(Tcl_Interp *childInterp, jpayne@69: const char *childCmd, Tcl_Interp *target, jpayne@69: const char *targetCmd, int argc, jpayne@69: CONST84 char *const *argv); jpayne@69: /* 87 */ jpayne@69: EXTERN int Tcl_CreateAliasObj(Tcl_Interp *childInterp, jpayne@69: const char *childCmd, Tcl_Interp *target, jpayne@69: const char *targetCmd, int objc, jpayne@69: Tcl_Obj *const objv[]); jpayne@69: /* 88 */ jpayne@69: EXTERN Tcl_Channel Tcl_CreateChannel(const Tcl_ChannelType *typePtr, jpayne@69: const char *chanName, jpayne@69: ClientData instanceData, int mask); jpayne@69: /* 89 */ jpayne@69: EXTERN void Tcl_CreateChannelHandler(Tcl_Channel chan, int mask, jpayne@69: Tcl_ChannelProc *proc, ClientData clientData); jpayne@69: /* 90 */ jpayne@69: EXTERN void Tcl_CreateCloseHandler(Tcl_Channel chan, jpayne@69: Tcl_CloseProc *proc, ClientData clientData); jpayne@69: /* 91 */ jpayne@69: EXTERN Tcl_Command Tcl_CreateCommand(Tcl_Interp *interp, jpayne@69: const char *cmdName, Tcl_CmdProc *proc, jpayne@69: ClientData clientData, jpayne@69: Tcl_CmdDeleteProc *deleteProc); jpayne@69: /* 92 */ jpayne@69: EXTERN void Tcl_CreateEventSource(Tcl_EventSetupProc *setupProc, jpayne@69: Tcl_EventCheckProc *checkProc, jpayne@69: ClientData clientData); jpayne@69: /* 93 */ jpayne@69: EXTERN void Tcl_CreateExitHandler(Tcl_ExitProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 94 */ jpayne@69: EXTERN Tcl_Interp * Tcl_CreateInterp(void); jpayne@69: /* 95 */ jpayne@69: EXTERN void Tcl_CreateMathFunc(Tcl_Interp *interp, jpayne@69: const char *name, int numArgs, jpayne@69: Tcl_ValueType *argTypes, Tcl_MathProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 96 */ jpayne@69: EXTERN Tcl_Command Tcl_CreateObjCommand(Tcl_Interp *interp, jpayne@69: const char *cmdName, Tcl_ObjCmdProc *proc, jpayne@69: ClientData clientData, jpayne@69: Tcl_CmdDeleteProc *deleteProc); jpayne@69: /* 97 */ jpayne@69: EXTERN Tcl_Interp * Tcl_CreateSlave(Tcl_Interp *interp, const char *name, jpayne@69: int isSafe); jpayne@69: /* 98 */ jpayne@69: EXTERN Tcl_TimerToken Tcl_CreateTimerHandler(int milliseconds, jpayne@69: Tcl_TimerProc *proc, ClientData clientData); jpayne@69: /* 99 */ jpayne@69: EXTERN Tcl_Trace Tcl_CreateTrace(Tcl_Interp *interp, int level, jpayne@69: Tcl_CmdTraceProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 100 */ jpayne@69: EXTERN void Tcl_DeleteAssocData(Tcl_Interp *interp, jpayne@69: const char *name); jpayne@69: /* 101 */ jpayne@69: EXTERN void Tcl_DeleteChannelHandler(Tcl_Channel chan, jpayne@69: Tcl_ChannelProc *proc, ClientData clientData); jpayne@69: /* 102 */ jpayne@69: EXTERN void Tcl_DeleteCloseHandler(Tcl_Channel chan, jpayne@69: Tcl_CloseProc *proc, ClientData clientData); jpayne@69: /* 103 */ jpayne@69: EXTERN int Tcl_DeleteCommand(Tcl_Interp *interp, jpayne@69: const char *cmdName); jpayne@69: /* 104 */ jpayne@69: EXTERN int Tcl_DeleteCommandFromToken(Tcl_Interp *interp, jpayne@69: Tcl_Command command); jpayne@69: /* 105 */ jpayne@69: EXTERN void Tcl_DeleteEvents(Tcl_EventDeleteProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 106 */ jpayne@69: EXTERN void Tcl_DeleteEventSource(Tcl_EventSetupProc *setupProc, jpayne@69: Tcl_EventCheckProc *checkProc, jpayne@69: ClientData clientData); jpayne@69: /* 107 */ jpayne@69: EXTERN void Tcl_DeleteExitHandler(Tcl_ExitProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 108 */ jpayne@69: EXTERN void Tcl_DeleteHashEntry(Tcl_HashEntry *entryPtr); jpayne@69: /* 109 */ jpayne@69: EXTERN void Tcl_DeleteHashTable(Tcl_HashTable *tablePtr); jpayne@69: /* 110 */ jpayne@69: EXTERN void Tcl_DeleteInterp(Tcl_Interp *interp); jpayne@69: /* 111 */ jpayne@69: EXTERN void Tcl_DetachPids(int numPids, Tcl_Pid *pidPtr); jpayne@69: /* 112 */ jpayne@69: EXTERN void Tcl_DeleteTimerHandler(Tcl_TimerToken token); jpayne@69: /* 113 */ jpayne@69: EXTERN void Tcl_DeleteTrace(Tcl_Interp *interp, Tcl_Trace trace); jpayne@69: /* 114 */ jpayne@69: EXTERN void Tcl_DontCallWhenDeleted(Tcl_Interp *interp, jpayne@69: Tcl_InterpDeleteProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 115 */ jpayne@69: EXTERN int Tcl_DoOneEvent(int flags); jpayne@69: /* 116 */ jpayne@69: EXTERN void Tcl_DoWhenIdle(Tcl_IdleProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 117 */ jpayne@69: EXTERN char * Tcl_DStringAppend(Tcl_DString *dsPtr, jpayne@69: const char *bytes, int length); jpayne@69: /* 118 */ jpayne@69: EXTERN char * Tcl_DStringAppendElement(Tcl_DString *dsPtr, jpayne@69: const char *element); jpayne@69: /* 119 */ jpayne@69: EXTERN void Tcl_DStringEndSublist(Tcl_DString *dsPtr); jpayne@69: /* 120 */ jpayne@69: EXTERN void Tcl_DStringFree(Tcl_DString *dsPtr); jpayne@69: /* 121 */ jpayne@69: EXTERN void Tcl_DStringGetResult(Tcl_Interp *interp, jpayne@69: Tcl_DString *dsPtr); jpayne@69: /* 122 */ jpayne@69: EXTERN void Tcl_DStringInit(Tcl_DString *dsPtr); jpayne@69: /* 123 */ jpayne@69: EXTERN void Tcl_DStringResult(Tcl_Interp *interp, jpayne@69: Tcl_DString *dsPtr); jpayne@69: /* 124 */ jpayne@69: EXTERN void Tcl_DStringSetLength(Tcl_DString *dsPtr, int length); jpayne@69: /* 125 */ jpayne@69: EXTERN void Tcl_DStringStartSublist(Tcl_DString *dsPtr); jpayne@69: /* 126 */ jpayne@69: EXTERN int Tcl_Eof(Tcl_Channel chan); jpayne@69: /* 127 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_ErrnoId(void); jpayne@69: /* 128 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_ErrnoMsg(int err); jpayne@69: /* 129 */ jpayne@69: EXTERN int Tcl_Eval(Tcl_Interp *interp, const char *script); jpayne@69: /* 130 */ jpayne@69: EXTERN int Tcl_EvalFile(Tcl_Interp *interp, jpayne@69: const char *fileName); jpayne@69: /* 131 */ jpayne@69: EXTERN int Tcl_EvalObj(Tcl_Interp *interp, Tcl_Obj *objPtr); jpayne@69: /* 132 */ jpayne@69: EXTERN void Tcl_EventuallyFree(ClientData clientData, jpayne@69: Tcl_FreeProc *freeProc); jpayne@69: /* 133 */ jpayne@69: EXTERN TCL_NORETURN void Tcl_Exit(int status); jpayne@69: /* 134 */ jpayne@69: EXTERN int Tcl_ExposeCommand(Tcl_Interp *interp, jpayne@69: const char *hiddenCmdToken, jpayne@69: const char *cmdName); jpayne@69: /* 135 */ jpayne@69: EXTERN int Tcl_ExprBoolean(Tcl_Interp *interp, const char *expr, jpayne@69: int *ptr); jpayne@69: /* 136 */ jpayne@69: EXTERN int Tcl_ExprBooleanObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr, int *ptr); jpayne@69: /* 137 */ jpayne@69: EXTERN int Tcl_ExprDouble(Tcl_Interp *interp, const char *expr, jpayne@69: double *ptr); jpayne@69: /* 138 */ jpayne@69: EXTERN int Tcl_ExprDoubleObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr, double *ptr); jpayne@69: /* 139 */ jpayne@69: EXTERN int Tcl_ExprLong(Tcl_Interp *interp, const char *expr, jpayne@69: long *ptr); jpayne@69: /* 140 */ jpayne@69: EXTERN int Tcl_ExprLongObj(Tcl_Interp *interp, Tcl_Obj *objPtr, jpayne@69: long *ptr); jpayne@69: /* 141 */ jpayne@69: EXTERN int Tcl_ExprObj(Tcl_Interp *interp, Tcl_Obj *objPtr, jpayne@69: Tcl_Obj **resultPtrPtr); jpayne@69: /* 142 */ jpayne@69: EXTERN int Tcl_ExprString(Tcl_Interp *interp, const char *expr); jpayne@69: /* 143 */ jpayne@69: EXTERN void Tcl_Finalize(void); jpayne@69: /* 144 */ jpayne@69: EXTERN void Tcl_FindExecutable(const char *argv0); jpayne@69: /* 145 */ jpayne@69: EXTERN Tcl_HashEntry * Tcl_FirstHashEntry(Tcl_HashTable *tablePtr, jpayne@69: Tcl_HashSearch *searchPtr); jpayne@69: /* 146 */ jpayne@69: EXTERN int Tcl_Flush(Tcl_Channel chan); jpayne@69: /* 147 */ jpayne@69: EXTERN void Tcl_FreeResult(Tcl_Interp *interp); jpayne@69: /* 148 */ jpayne@69: EXTERN int Tcl_GetAlias(Tcl_Interp *interp, jpayne@69: const char *childCmd, jpayne@69: Tcl_Interp **targetInterpPtr, jpayne@69: CONST84 char **targetCmdPtr, int *argcPtr, jpayne@69: CONST84 char ***argvPtr); jpayne@69: /* 149 */ jpayne@69: EXTERN int Tcl_GetAliasObj(Tcl_Interp *interp, jpayne@69: const char *childCmd, jpayne@69: Tcl_Interp **targetInterpPtr, jpayne@69: CONST84 char **targetCmdPtr, int *objcPtr, jpayne@69: Tcl_Obj ***objv); jpayne@69: /* 150 */ jpayne@69: EXTERN ClientData Tcl_GetAssocData(Tcl_Interp *interp, jpayne@69: const char *name, jpayne@69: Tcl_InterpDeleteProc **procPtr); jpayne@69: /* 151 */ jpayne@69: EXTERN Tcl_Channel Tcl_GetChannel(Tcl_Interp *interp, jpayne@69: const char *chanName, int *modePtr); jpayne@69: /* 152 */ jpayne@69: EXTERN int Tcl_GetChannelBufferSize(Tcl_Channel chan); jpayne@69: /* 153 */ jpayne@69: EXTERN int Tcl_GetChannelHandle(Tcl_Channel chan, int direction, jpayne@69: ClientData *handlePtr); jpayne@69: /* 154 */ jpayne@69: EXTERN ClientData Tcl_GetChannelInstanceData(Tcl_Channel chan); jpayne@69: /* 155 */ jpayne@69: EXTERN int Tcl_GetChannelMode(Tcl_Channel chan); jpayne@69: /* 156 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_GetChannelName(Tcl_Channel chan); jpayne@69: /* 157 */ jpayne@69: EXTERN int Tcl_GetChannelOption(Tcl_Interp *interp, jpayne@69: Tcl_Channel chan, const char *optionName, jpayne@69: Tcl_DString *dsPtr); jpayne@69: /* 158 */ jpayne@69: EXTERN CONST86 Tcl_ChannelType * Tcl_GetChannelType(Tcl_Channel chan); jpayne@69: /* 159 */ jpayne@69: EXTERN int Tcl_GetCommandInfo(Tcl_Interp *interp, jpayne@69: const char *cmdName, Tcl_CmdInfo *infoPtr); jpayne@69: /* 160 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_GetCommandName(Tcl_Interp *interp, jpayne@69: Tcl_Command command); jpayne@69: /* 161 */ jpayne@69: EXTERN int Tcl_GetErrno(void); jpayne@69: /* 162 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_GetHostName(void); jpayne@69: /* 163 */ jpayne@69: EXTERN int Tcl_GetInterpPath(Tcl_Interp *interp, jpayne@69: Tcl_Interp *childInterp); jpayne@69: /* 164 */ jpayne@69: EXTERN Tcl_Interp * Tcl_GetMaster(Tcl_Interp *interp); jpayne@69: /* 165 */ jpayne@69: EXTERN const char * Tcl_GetNameOfExecutable(void); jpayne@69: /* 166 */ jpayne@69: EXTERN Tcl_Obj * Tcl_GetObjResult(Tcl_Interp *interp); jpayne@69: #if !defined(_WIN32) && !defined(MAC_OSX_TCL) /* UNIX */ jpayne@69: /* 167 */ jpayne@69: EXTERN int Tcl_GetOpenFile(Tcl_Interp *interp, jpayne@69: const char *chanID, int forWriting, jpayne@69: int checkUsage, ClientData *filePtr); jpayne@69: #endif /* UNIX */ jpayne@69: #ifdef MAC_OSX_TCL /* MACOSX */ jpayne@69: /* 167 */ jpayne@69: EXTERN int Tcl_GetOpenFile(Tcl_Interp *interp, jpayne@69: const char *chanID, int forWriting, jpayne@69: int checkUsage, ClientData *filePtr); jpayne@69: #endif /* MACOSX */ jpayne@69: /* 168 */ jpayne@69: EXTERN Tcl_PathType Tcl_GetPathType(const char *path); jpayne@69: /* 169 */ jpayne@69: EXTERN int Tcl_Gets(Tcl_Channel chan, Tcl_DString *dsPtr); jpayne@69: /* 170 */ jpayne@69: EXTERN int Tcl_GetsObj(Tcl_Channel chan, Tcl_Obj *objPtr); jpayne@69: /* 171 */ jpayne@69: EXTERN int Tcl_GetServiceMode(void); jpayne@69: /* 172 */ jpayne@69: EXTERN Tcl_Interp * Tcl_GetSlave(Tcl_Interp *interp, const char *name); jpayne@69: /* 173 */ jpayne@69: EXTERN Tcl_Channel Tcl_GetStdChannel(int type); jpayne@69: /* 174 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_GetStringResult(Tcl_Interp *interp); jpayne@69: /* 175 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_GetVar(Tcl_Interp *interp, jpayne@69: const char *varName, int flags); jpayne@69: /* 176 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_GetVar2(Tcl_Interp *interp, jpayne@69: const char *part1, const char *part2, jpayne@69: int flags); jpayne@69: /* 177 */ jpayne@69: EXTERN int Tcl_GlobalEval(Tcl_Interp *interp, jpayne@69: const char *command); jpayne@69: /* 178 */ jpayne@69: EXTERN int Tcl_GlobalEvalObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr); jpayne@69: /* 179 */ jpayne@69: EXTERN int Tcl_HideCommand(Tcl_Interp *interp, jpayne@69: const char *cmdName, jpayne@69: const char *hiddenCmdToken); jpayne@69: /* 180 */ jpayne@69: EXTERN int Tcl_Init(Tcl_Interp *interp); jpayne@69: /* 181 */ jpayne@69: EXTERN void Tcl_InitHashTable(Tcl_HashTable *tablePtr, jpayne@69: int keyType); jpayne@69: /* 182 */ jpayne@69: EXTERN int Tcl_InputBlocked(Tcl_Channel chan); jpayne@69: /* 183 */ jpayne@69: EXTERN int Tcl_InputBuffered(Tcl_Channel chan); jpayne@69: /* 184 */ jpayne@69: EXTERN int Tcl_InterpDeleted(Tcl_Interp *interp); jpayne@69: /* 185 */ jpayne@69: EXTERN int Tcl_IsSafe(Tcl_Interp *interp); jpayne@69: /* 186 */ jpayne@69: EXTERN char * Tcl_JoinPath(int argc, CONST84 char *const *argv, jpayne@69: Tcl_DString *resultPtr); jpayne@69: /* 187 */ jpayne@69: EXTERN int Tcl_LinkVar(Tcl_Interp *interp, const char *varName, jpayne@69: char *addr, int type); jpayne@69: /* Slot 188 is reserved */ jpayne@69: /* 189 */ jpayne@69: EXTERN Tcl_Channel Tcl_MakeFileChannel(ClientData handle, int mode); jpayne@69: /* 190 */ jpayne@69: EXTERN int Tcl_MakeSafe(Tcl_Interp *interp); jpayne@69: /* 191 */ jpayne@69: EXTERN Tcl_Channel Tcl_MakeTcpClientChannel(ClientData tcpSocket); jpayne@69: /* 192 */ jpayne@69: EXTERN char * Tcl_Merge(int argc, CONST84 char *const *argv); jpayne@69: /* 193 */ jpayne@69: EXTERN Tcl_HashEntry * Tcl_NextHashEntry(Tcl_HashSearch *searchPtr); jpayne@69: /* 194 */ jpayne@69: EXTERN void Tcl_NotifyChannel(Tcl_Channel channel, int mask); jpayne@69: /* 195 */ jpayne@69: EXTERN Tcl_Obj * Tcl_ObjGetVar2(Tcl_Interp *interp, Tcl_Obj *part1Ptr, jpayne@69: Tcl_Obj *part2Ptr, int flags); jpayne@69: /* 196 */ jpayne@69: EXTERN Tcl_Obj * Tcl_ObjSetVar2(Tcl_Interp *interp, Tcl_Obj *part1Ptr, jpayne@69: Tcl_Obj *part2Ptr, Tcl_Obj *newValuePtr, jpayne@69: int flags); jpayne@69: /* 197 */ jpayne@69: EXTERN Tcl_Channel Tcl_OpenCommandChannel(Tcl_Interp *interp, int argc, jpayne@69: CONST84 char **argv, int flags); jpayne@69: /* 198 */ jpayne@69: EXTERN Tcl_Channel Tcl_OpenFileChannel(Tcl_Interp *interp, jpayne@69: const char *fileName, const char *modeString, jpayne@69: int permissions); jpayne@69: /* 199 */ jpayne@69: EXTERN Tcl_Channel Tcl_OpenTcpClient(Tcl_Interp *interp, int port, jpayne@69: const char *address, const char *myaddr, jpayne@69: int myport, int flags); jpayne@69: /* 200 */ jpayne@69: EXTERN Tcl_Channel Tcl_OpenTcpServer(Tcl_Interp *interp, int port, jpayne@69: const char *host, jpayne@69: Tcl_TcpAcceptProc *acceptProc, jpayne@69: ClientData callbackData); jpayne@69: /* 201 */ jpayne@69: EXTERN void Tcl_Preserve(ClientData data); jpayne@69: /* 202 */ jpayne@69: EXTERN void Tcl_PrintDouble(Tcl_Interp *interp, double value, jpayne@69: char *dst); jpayne@69: /* 203 */ jpayne@69: EXTERN int Tcl_PutEnv(const char *assignment); jpayne@69: /* 204 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_PosixError(Tcl_Interp *interp); jpayne@69: /* 205 */ jpayne@69: EXTERN void Tcl_QueueEvent(Tcl_Event *evPtr, jpayne@69: Tcl_QueuePosition position); jpayne@69: /* 206 */ jpayne@69: EXTERN int Tcl_Read(Tcl_Channel chan, char *bufPtr, int toRead); jpayne@69: /* 207 */ jpayne@69: EXTERN void Tcl_ReapDetachedProcs(void); jpayne@69: /* 208 */ jpayne@69: EXTERN int Tcl_RecordAndEval(Tcl_Interp *interp, jpayne@69: const char *cmd, int flags); jpayne@69: /* 209 */ jpayne@69: EXTERN int Tcl_RecordAndEvalObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *cmdPtr, int flags); jpayne@69: /* 210 */ jpayne@69: EXTERN void Tcl_RegisterChannel(Tcl_Interp *interp, jpayne@69: Tcl_Channel chan); jpayne@69: /* 211 */ jpayne@69: EXTERN void Tcl_RegisterObjType(const Tcl_ObjType *typePtr); jpayne@69: /* 212 */ jpayne@69: EXTERN Tcl_RegExp Tcl_RegExpCompile(Tcl_Interp *interp, jpayne@69: const char *pattern); jpayne@69: /* 213 */ jpayne@69: EXTERN int Tcl_RegExpExec(Tcl_Interp *interp, Tcl_RegExp regexp, jpayne@69: const char *text, const char *start); jpayne@69: /* 214 */ jpayne@69: EXTERN int Tcl_RegExpMatch(Tcl_Interp *interp, const char *text, jpayne@69: const char *pattern); jpayne@69: /* 215 */ jpayne@69: EXTERN void Tcl_RegExpRange(Tcl_RegExp regexp, int index, jpayne@69: CONST84 char **startPtr, jpayne@69: CONST84 char **endPtr); jpayne@69: /* 216 */ jpayne@69: EXTERN void Tcl_Release(ClientData clientData); jpayne@69: /* 217 */ jpayne@69: EXTERN void Tcl_ResetResult(Tcl_Interp *interp); jpayne@69: /* 218 */ jpayne@69: EXTERN int Tcl_ScanElement(const char *src, int *flagPtr); jpayne@69: /* 219 */ jpayne@69: EXTERN int Tcl_ScanCountedElement(const char *src, int length, jpayne@69: int *flagPtr); jpayne@69: /* 220 */ jpayne@69: EXTERN int Tcl_SeekOld(Tcl_Channel chan, int offset, int mode); jpayne@69: /* 221 */ jpayne@69: EXTERN int Tcl_ServiceAll(void); jpayne@69: /* 222 */ jpayne@69: EXTERN int Tcl_ServiceEvent(int flags); jpayne@69: /* 223 */ jpayne@69: EXTERN void Tcl_SetAssocData(Tcl_Interp *interp, jpayne@69: const char *name, Tcl_InterpDeleteProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 224 */ jpayne@69: EXTERN void Tcl_SetChannelBufferSize(Tcl_Channel chan, int sz); jpayne@69: /* 225 */ jpayne@69: EXTERN int Tcl_SetChannelOption(Tcl_Interp *interp, jpayne@69: Tcl_Channel chan, const char *optionName, jpayne@69: const char *newValue); jpayne@69: /* 226 */ jpayne@69: EXTERN int Tcl_SetCommandInfo(Tcl_Interp *interp, jpayne@69: const char *cmdName, jpayne@69: const Tcl_CmdInfo *infoPtr); jpayne@69: /* 227 */ jpayne@69: EXTERN void Tcl_SetErrno(int err); jpayne@69: /* 228 */ jpayne@69: EXTERN void Tcl_SetErrorCode(Tcl_Interp *interp, ...); jpayne@69: /* 229 */ jpayne@69: EXTERN void Tcl_SetMaxBlockTime(const Tcl_Time *timePtr); jpayne@69: /* 230 */ jpayne@69: EXTERN void Tcl_SetPanicProc( jpayne@69: TCL_NORETURN1 Tcl_PanicProc *panicProc); jpayne@69: /* 231 */ jpayne@69: EXTERN int Tcl_SetRecursionLimit(Tcl_Interp *interp, int depth); jpayne@69: /* 232 */ jpayne@69: EXTERN void Tcl_SetResult(Tcl_Interp *interp, char *result, jpayne@69: Tcl_FreeProc *freeProc); jpayne@69: /* 233 */ jpayne@69: EXTERN int Tcl_SetServiceMode(int mode); jpayne@69: /* 234 */ jpayne@69: EXTERN void Tcl_SetObjErrorCode(Tcl_Interp *interp, jpayne@69: Tcl_Obj *errorObjPtr); jpayne@69: /* 235 */ jpayne@69: EXTERN void Tcl_SetObjResult(Tcl_Interp *interp, jpayne@69: Tcl_Obj *resultObjPtr); jpayne@69: /* 236 */ jpayne@69: EXTERN void Tcl_SetStdChannel(Tcl_Channel channel, int type); jpayne@69: /* 237 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_SetVar(Tcl_Interp *interp, jpayne@69: const char *varName, const char *newValue, jpayne@69: int flags); jpayne@69: /* 238 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_SetVar2(Tcl_Interp *interp, jpayne@69: const char *part1, const char *part2, jpayne@69: const char *newValue, int flags); jpayne@69: /* 239 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_SignalId(int sig); jpayne@69: /* 240 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_SignalMsg(int sig); jpayne@69: /* 241 */ jpayne@69: EXTERN void Tcl_SourceRCFile(Tcl_Interp *interp); jpayne@69: /* 242 */ jpayne@69: EXTERN int Tcl_SplitList(Tcl_Interp *interp, jpayne@69: const char *listStr, int *argcPtr, jpayne@69: CONST84 char ***argvPtr); jpayne@69: /* 243 */ jpayne@69: EXTERN void Tcl_SplitPath(const char *path, int *argcPtr, jpayne@69: CONST84 char ***argvPtr); jpayne@69: /* 244 */ jpayne@69: EXTERN void Tcl_StaticPackage(Tcl_Interp *interp, jpayne@69: const char *prefix, jpayne@69: Tcl_PackageInitProc *initProc, jpayne@69: Tcl_PackageInitProc *safeInitProc); jpayne@69: /* 245 */ jpayne@69: EXTERN int Tcl_StringMatch(const char *str, const char *pattern); jpayne@69: /* 246 */ jpayne@69: EXTERN int Tcl_TellOld(Tcl_Channel chan); jpayne@69: /* 247 */ jpayne@69: EXTERN int Tcl_TraceVar(Tcl_Interp *interp, const char *varName, jpayne@69: int flags, Tcl_VarTraceProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 248 */ jpayne@69: EXTERN int Tcl_TraceVar2(Tcl_Interp *interp, const char *part1, jpayne@69: const char *part2, int flags, jpayne@69: Tcl_VarTraceProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 249 */ jpayne@69: EXTERN char * Tcl_TranslateFileName(Tcl_Interp *interp, jpayne@69: const char *name, Tcl_DString *bufferPtr); jpayne@69: /* 250 */ jpayne@69: EXTERN int Tcl_Ungets(Tcl_Channel chan, const char *str, jpayne@69: int len, int atHead); jpayne@69: /* 251 */ jpayne@69: EXTERN void Tcl_UnlinkVar(Tcl_Interp *interp, jpayne@69: const char *varName); jpayne@69: /* 252 */ jpayne@69: EXTERN int Tcl_UnregisterChannel(Tcl_Interp *interp, jpayne@69: Tcl_Channel chan); jpayne@69: /* 253 */ jpayne@69: EXTERN int Tcl_UnsetVar(Tcl_Interp *interp, const char *varName, jpayne@69: int flags); jpayne@69: /* 254 */ jpayne@69: EXTERN int Tcl_UnsetVar2(Tcl_Interp *interp, const char *part1, jpayne@69: const char *part2, int flags); jpayne@69: /* 255 */ jpayne@69: EXTERN void Tcl_UntraceVar(Tcl_Interp *interp, jpayne@69: const char *varName, int flags, jpayne@69: Tcl_VarTraceProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 256 */ jpayne@69: EXTERN void Tcl_UntraceVar2(Tcl_Interp *interp, jpayne@69: const char *part1, const char *part2, jpayne@69: int flags, Tcl_VarTraceProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 257 */ jpayne@69: EXTERN void Tcl_UpdateLinkedVar(Tcl_Interp *interp, jpayne@69: const char *varName); jpayne@69: /* 258 */ jpayne@69: EXTERN int Tcl_UpVar(Tcl_Interp *interp, const char *frameName, jpayne@69: const char *varName, const char *localName, jpayne@69: int flags); jpayne@69: /* 259 */ jpayne@69: EXTERN int Tcl_UpVar2(Tcl_Interp *interp, const char *frameName, jpayne@69: const char *part1, const char *part2, jpayne@69: const char *localName, int flags); jpayne@69: /* 260 */ jpayne@69: EXTERN int Tcl_VarEval(Tcl_Interp *interp, ...); jpayne@69: /* 261 */ jpayne@69: EXTERN ClientData Tcl_VarTraceInfo(Tcl_Interp *interp, jpayne@69: const char *varName, int flags, jpayne@69: Tcl_VarTraceProc *procPtr, jpayne@69: ClientData prevClientData); jpayne@69: /* 262 */ jpayne@69: EXTERN ClientData Tcl_VarTraceInfo2(Tcl_Interp *interp, jpayne@69: const char *part1, const char *part2, jpayne@69: int flags, Tcl_VarTraceProc *procPtr, jpayne@69: ClientData prevClientData); jpayne@69: /* 263 */ jpayne@69: EXTERN int Tcl_Write(Tcl_Channel chan, const char *s, int slen); jpayne@69: /* 264 */ jpayne@69: EXTERN void Tcl_WrongNumArgs(Tcl_Interp *interp, int objc, jpayne@69: Tcl_Obj *const objv[], const char *message); jpayne@69: /* 265 */ jpayne@69: EXTERN int Tcl_DumpActiveMemory(const char *fileName); jpayne@69: /* 266 */ jpayne@69: EXTERN void Tcl_ValidateAllMemory(const char *file, int line); jpayne@69: /* 267 */ jpayne@69: EXTERN void Tcl_AppendResultVA(Tcl_Interp *interp, jpayne@69: va_list argList); jpayne@69: /* 268 */ jpayne@69: EXTERN void Tcl_AppendStringsToObjVA(Tcl_Obj *objPtr, jpayne@69: va_list argList); jpayne@69: /* 269 */ jpayne@69: EXTERN char * Tcl_HashStats(Tcl_HashTable *tablePtr); jpayne@69: /* 270 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_ParseVar(Tcl_Interp *interp, jpayne@69: const char *start, CONST84 char **termPtr); jpayne@69: /* 271 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_PkgPresent(Tcl_Interp *interp, jpayne@69: const char *name, const char *version, jpayne@69: int exact); jpayne@69: /* 272 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_PkgPresentEx(Tcl_Interp *interp, jpayne@69: const char *name, const char *version, jpayne@69: int exact, void *clientDataPtr); jpayne@69: /* 273 */ jpayne@69: EXTERN int Tcl_PkgProvide(Tcl_Interp *interp, const char *name, jpayne@69: const char *version); jpayne@69: /* 274 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_PkgRequire(Tcl_Interp *interp, jpayne@69: const char *name, const char *version, jpayne@69: int exact); jpayne@69: /* 275 */ jpayne@69: EXTERN void Tcl_SetErrorCodeVA(Tcl_Interp *interp, jpayne@69: va_list argList); jpayne@69: /* 276 */ jpayne@69: EXTERN int Tcl_VarEvalVA(Tcl_Interp *interp, va_list argList); jpayne@69: /* 277 */ jpayne@69: EXTERN Tcl_Pid Tcl_WaitPid(Tcl_Pid pid, int *statPtr, int options); jpayne@69: /* 278 */ jpayne@69: EXTERN TCL_NORETURN void Tcl_PanicVA(const char *format, va_list argList); jpayne@69: /* 279 */ jpayne@69: EXTERN void Tcl_GetVersion(int *major, int *minor, jpayne@69: int *patchLevel, int *type); jpayne@69: /* 280 */ jpayne@69: EXTERN void Tcl_InitMemory(Tcl_Interp *interp); jpayne@69: /* 281 */ jpayne@69: EXTERN Tcl_Channel Tcl_StackChannel(Tcl_Interp *interp, jpayne@69: const Tcl_ChannelType *typePtr, jpayne@69: ClientData instanceData, int mask, jpayne@69: Tcl_Channel prevChan); jpayne@69: /* 282 */ jpayne@69: EXTERN int Tcl_UnstackChannel(Tcl_Interp *interp, jpayne@69: Tcl_Channel chan); jpayne@69: /* 283 */ jpayne@69: EXTERN Tcl_Channel Tcl_GetStackedChannel(Tcl_Channel chan); jpayne@69: /* 284 */ jpayne@69: EXTERN void Tcl_SetMainLoop(Tcl_MainLoopProc *proc); jpayne@69: /* Slot 285 is reserved */ jpayne@69: /* 286 */ jpayne@69: EXTERN void Tcl_AppendObjToObj(Tcl_Obj *objPtr, jpayne@69: Tcl_Obj *appendObjPtr); jpayne@69: /* 287 */ jpayne@69: EXTERN Tcl_Encoding Tcl_CreateEncoding(const Tcl_EncodingType *typePtr); jpayne@69: /* 288 */ jpayne@69: EXTERN void Tcl_CreateThreadExitHandler(Tcl_ExitProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 289 */ jpayne@69: EXTERN void Tcl_DeleteThreadExitHandler(Tcl_ExitProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 290 */ jpayne@69: EXTERN void Tcl_DiscardResult(Tcl_SavedResult *statePtr); jpayne@69: /* 291 */ jpayne@69: EXTERN int Tcl_EvalEx(Tcl_Interp *interp, const char *script, jpayne@69: int numBytes, int flags); jpayne@69: /* 292 */ jpayne@69: EXTERN int Tcl_EvalObjv(Tcl_Interp *interp, int objc, jpayne@69: Tcl_Obj *const objv[], int flags); jpayne@69: /* 293 */ jpayne@69: EXTERN int Tcl_EvalObjEx(Tcl_Interp *interp, Tcl_Obj *objPtr, jpayne@69: int flags); jpayne@69: /* 294 */ jpayne@69: EXTERN void Tcl_ExitThread(int status); jpayne@69: /* 295 */ jpayne@69: EXTERN int Tcl_ExternalToUtf(Tcl_Interp *interp, jpayne@69: Tcl_Encoding encoding, const char *src, jpayne@69: int srcLen, int flags, jpayne@69: Tcl_EncodingState *statePtr, char *dst, jpayne@69: int dstLen, int *srcReadPtr, jpayne@69: int *dstWrotePtr, int *dstCharsPtr); jpayne@69: /* 296 */ jpayne@69: EXTERN char * Tcl_ExternalToUtfDString(Tcl_Encoding encoding, jpayne@69: const char *src, int srcLen, jpayne@69: Tcl_DString *dsPtr); jpayne@69: /* 297 */ jpayne@69: EXTERN void Tcl_FinalizeThread(void); jpayne@69: /* 298 */ jpayne@69: EXTERN void Tcl_FinalizeNotifier(ClientData clientData); jpayne@69: /* 299 */ jpayne@69: EXTERN void Tcl_FreeEncoding(Tcl_Encoding encoding); jpayne@69: /* 300 */ jpayne@69: EXTERN Tcl_ThreadId Tcl_GetCurrentThread(void); jpayne@69: /* 301 */ jpayne@69: EXTERN Tcl_Encoding Tcl_GetEncoding(Tcl_Interp *interp, const char *name); jpayne@69: /* 302 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_GetEncodingName(Tcl_Encoding encoding); jpayne@69: /* 303 */ jpayne@69: EXTERN void Tcl_GetEncodingNames(Tcl_Interp *interp); jpayne@69: /* 304 */ jpayne@69: EXTERN int Tcl_GetIndexFromObjStruct(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr, const void *tablePtr, jpayne@69: int offset, const char *msg, int flags, jpayne@69: int *indexPtr); jpayne@69: /* 305 */ jpayne@69: EXTERN void * Tcl_GetThreadData(Tcl_ThreadDataKey *keyPtr, jpayne@69: int size); jpayne@69: /* 306 */ jpayne@69: EXTERN Tcl_Obj * Tcl_GetVar2Ex(Tcl_Interp *interp, const char *part1, jpayne@69: const char *part2, int flags); jpayne@69: /* 307 */ jpayne@69: EXTERN ClientData Tcl_InitNotifier(void); jpayne@69: /* 308 */ jpayne@69: EXTERN void Tcl_MutexLock(Tcl_Mutex *mutexPtr); jpayne@69: /* 309 */ jpayne@69: EXTERN void Tcl_MutexUnlock(Tcl_Mutex *mutexPtr); jpayne@69: /* 310 */ jpayne@69: EXTERN void Tcl_ConditionNotify(Tcl_Condition *condPtr); jpayne@69: /* 311 */ jpayne@69: EXTERN void Tcl_ConditionWait(Tcl_Condition *condPtr, jpayne@69: Tcl_Mutex *mutexPtr, const Tcl_Time *timePtr); jpayne@69: /* 312 */ jpayne@69: EXTERN int Tcl_NumUtfChars(const char *src, int length); jpayne@69: /* 313 */ jpayne@69: EXTERN int Tcl_ReadChars(Tcl_Channel channel, Tcl_Obj *objPtr, jpayne@69: int charsToRead, int appendFlag); jpayne@69: /* 314 */ jpayne@69: EXTERN void Tcl_RestoreResult(Tcl_Interp *interp, jpayne@69: Tcl_SavedResult *statePtr); jpayne@69: /* 315 */ jpayne@69: EXTERN void Tcl_SaveResult(Tcl_Interp *interp, jpayne@69: Tcl_SavedResult *statePtr); jpayne@69: /* 316 */ jpayne@69: EXTERN int Tcl_SetSystemEncoding(Tcl_Interp *interp, jpayne@69: const char *name); jpayne@69: /* 317 */ jpayne@69: EXTERN Tcl_Obj * Tcl_SetVar2Ex(Tcl_Interp *interp, const char *part1, jpayne@69: const char *part2, Tcl_Obj *newValuePtr, jpayne@69: int flags); jpayne@69: /* 318 */ jpayne@69: EXTERN void Tcl_ThreadAlert(Tcl_ThreadId threadId); jpayne@69: /* 319 */ jpayne@69: EXTERN void Tcl_ThreadQueueEvent(Tcl_ThreadId threadId, jpayne@69: Tcl_Event *evPtr, Tcl_QueuePosition position); jpayne@69: /* 320 */ jpayne@69: EXTERN Tcl_UniChar Tcl_UniCharAtIndex(const char *src, int index); jpayne@69: /* 321 */ jpayne@69: EXTERN Tcl_UniChar Tcl_UniCharToLower(int ch); jpayne@69: /* 322 */ jpayne@69: EXTERN Tcl_UniChar Tcl_UniCharToTitle(int ch); jpayne@69: /* 323 */ jpayne@69: EXTERN Tcl_UniChar Tcl_UniCharToUpper(int ch); jpayne@69: /* 324 */ jpayne@69: EXTERN int Tcl_UniCharToUtf(int ch, char *buf); jpayne@69: /* 325 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_UtfAtIndex(const char *src, int index); jpayne@69: /* 326 */ jpayne@69: EXTERN int Tcl_UtfCharComplete(const char *src, int length); jpayne@69: /* 327 */ jpayne@69: EXTERN int Tcl_UtfBackslash(const char *src, int *readPtr, jpayne@69: char *dst); jpayne@69: /* 328 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_UtfFindFirst(const char *src, int ch); jpayne@69: /* 329 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_UtfFindLast(const char *src, int ch); jpayne@69: /* 330 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_UtfNext(const char *src); jpayne@69: /* 331 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_UtfPrev(const char *src, const char *start); jpayne@69: /* 332 */ jpayne@69: EXTERN int Tcl_UtfToExternal(Tcl_Interp *interp, jpayne@69: Tcl_Encoding encoding, const char *src, jpayne@69: int srcLen, int flags, jpayne@69: Tcl_EncodingState *statePtr, char *dst, jpayne@69: int dstLen, int *srcReadPtr, jpayne@69: int *dstWrotePtr, int *dstCharsPtr); jpayne@69: /* 333 */ jpayne@69: EXTERN char * Tcl_UtfToExternalDString(Tcl_Encoding encoding, jpayne@69: const char *src, int srcLen, jpayne@69: Tcl_DString *dsPtr); jpayne@69: /* 334 */ jpayne@69: EXTERN int Tcl_UtfToLower(char *src); jpayne@69: /* 335 */ jpayne@69: EXTERN int Tcl_UtfToTitle(char *src); jpayne@69: /* 336 */ jpayne@69: EXTERN int Tcl_UtfToUniChar(const char *src, Tcl_UniChar *chPtr); jpayne@69: /* 337 */ jpayne@69: EXTERN int Tcl_UtfToUpper(char *src); jpayne@69: /* 338 */ jpayne@69: EXTERN int Tcl_WriteChars(Tcl_Channel chan, const char *src, jpayne@69: int srcLen); jpayne@69: /* 339 */ jpayne@69: EXTERN int Tcl_WriteObj(Tcl_Channel chan, Tcl_Obj *objPtr); jpayne@69: /* 340 */ jpayne@69: EXTERN char * Tcl_GetString(Tcl_Obj *objPtr); jpayne@69: /* 341 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_GetDefaultEncodingDir(void); jpayne@69: /* 342 */ jpayne@69: EXTERN void Tcl_SetDefaultEncodingDir(const char *path); jpayne@69: /* 343 */ jpayne@69: EXTERN void Tcl_AlertNotifier(ClientData clientData); jpayne@69: /* 344 */ jpayne@69: EXTERN void Tcl_ServiceModeHook(int mode); jpayne@69: /* 345 */ jpayne@69: EXTERN int Tcl_UniCharIsAlnum(int ch); jpayne@69: /* 346 */ jpayne@69: EXTERN int Tcl_UniCharIsAlpha(int ch); jpayne@69: /* 347 */ jpayne@69: EXTERN int Tcl_UniCharIsDigit(int ch); jpayne@69: /* 348 */ jpayne@69: EXTERN int Tcl_UniCharIsLower(int ch); jpayne@69: /* 349 */ jpayne@69: EXTERN int Tcl_UniCharIsSpace(int ch); jpayne@69: /* 350 */ jpayne@69: EXTERN int Tcl_UniCharIsUpper(int ch); jpayne@69: /* 351 */ jpayne@69: EXTERN int Tcl_UniCharIsWordChar(int ch); jpayne@69: /* 352 */ jpayne@69: EXTERN int Tcl_UniCharLen(const Tcl_UniChar *uniStr); jpayne@69: /* 353 */ jpayne@69: EXTERN int Tcl_UniCharNcmp(const Tcl_UniChar *ucs, jpayne@69: const Tcl_UniChar *uct, jpayne@69: unsigned long numChars); jpayne@69: /* 354 */ jpayne@69: EXTERN char * Tcl_UniCharToUtfDString(const Tcl_UniChar *uniStr, jpayne@69: int uniLength, Tcl_DString *dsPtr); jpayne@69: /* 355 */ jpayne@69: EXTERN Tcl_UniChar * Tcl_UtfToUniCharDString(const char *src, int length, jpayne@69: Tcl_DString *dsPtr); jpayne@69: /* 356 */ jpayne@69: EXTERN Tcl_RegExp Tcl_GetRegExpFromObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *patObj, int flags); jpayne@69: /* 357 */ jpayne@69: EXTERN Tcl_Obj * Tcl_EvalTokens(Tcl_Interp *interp, jpayne@69: Tcl_Token *tokenPtr, int count); jpayne@69: /* 358 */ jpayne@69: EXTERN void Tcl_FreeParse(Tcl_Parse *parsePtr); jpayne@69: /* 359 */ jpayne@69: EXTERN void Tcl_LogCommandInfo(Tcl_Interp *interp, jpayne@69: const char *script, const char *command, jpayne@69: int length); jpayne@69: /* 360 */ jpayne@69: EXTERN int Tcl_ParseBraces(Tcl_Interp *interp, jpayne@69: const char *start, int numBytes, jpayne@69: Tcl_Parse *parsePtr, int append, jpayne@69: CONST84 char **termPtr); jpayne@69: /* 361 */ jpayne@69: EXTERN int Tcl_ParseCommand(Tcl_Interp *interp, jpayne@69: const char *start, int numBytes, int nested, jpayne@69: Tcl_Parse *parsePtr); jpayne@69: /* 362 */ jpayne@69: EXTERN int Tcl_ParseExpr(Tcl_Interp *interp, const char *start, jpayne@69: int numBytes, Tcl_Parse *parsePtr); jpayne@69: /* 363 */ jpayne@69: EXTERN int Tcl_ParseQuotedString(Tcl_Interp *interp, jpayne@69: const char *start, int numBytes, jpayne@69: Tcl_Parse *parsePtr, int append, jpayne@69: CONST84 char **termPtr); jpayne@69: /* 364 */ jpayne@69: EXTERN int Tcl_ParseVarName(Tcl_Interp *interp, jpayne@69: const char *start, int numBytes, jpayne@69: Tcl_Parse *parsePtr, int append); jpayne@69: /* 365 */ jpayne@69: EXTERN char * Tcl_GetCwd(Tcl_Interp *interp, Tcl_DString *cwdPtr); jpayne@69: /* 366 */ jpayne@69: EXTERN int Tcl_Chdir(const char *dirName); jpayne@69: /* 367 */ jpayne@69: EXTERN int Tcl_Access(const char *path, int mode); jpayne@69: /* 368 */ jpayne@69: EXTERN int Tcl_Stat(const char *path, struct stat *bufPtr); jpayne@69: /* 369 */ jpayne@69: EXTERN int Tcl_UtfNcmp(const char *s1, const char *s2, jpayne@69: unsigned long n); jpayne@69: /* 370 */ jpayne@69: EXTERN int Tcl_UtfNcasecmp(const char *s1, const char *s2, jpayne@69: unsigned long n); jpayne@69: /* 371 */ jpayne@69: EXTERN int Tcl_StringCaseMatch(const char *str, jpayne@69: const char *pattern, int nocase); jpayne@69: /* 372 */ jpayne@69: EXTERN int Tcl_UniCharIsControl(int ch); jpayne@69: /* 373 */ jpayne@69: EXTERN int Tcl_UniCharIsGraph(int ch); jpayne@69: /* 374 */ jpayne@69: EXTERN int Tcl_UniCharIsPrint(int ch); jpayne@69: /* 375 */ jpayne@69: EXTERN int Tcl_UniCharIsPunct(int ch); jpayne@69: /* 376 */ jpayne@69: EXTERN int Tcl_RegExpExecObj(Tcl_Interp *interp, jpayne@69: Tcl_RegExp regexp, Tcl_Obj *textObj, jpayne@69: int offset, int nmatches, int flags); jpayne@69: /* 377 */ jpayne@69: EXTERN void Tcl_RegExpGetInfo(Tcl_RegExp regexp, jpayne@69: Tcl_RegExpInfo *infoPtr); jpayne@69: /* 378 */ jpayne@69: EXTERN Tcl_Obj * Tcl_NewUnicodeObj(const Tcl_UniChar *unicode, jpayne@69: int numChars); jpayne@69: /* 379 */ jpayne@69: EXTERN void Tcl_SetUnicodeObj(Tcl_Obj *objPtr, jpayne@69: const Tcl_UniChar *unicode, int numChars); jpayne@69: /* 380 */ jpayne@69: EXTERN int Tcl_GetCharLength(Tcl_Obj *objPtr); jpayne@69: /* 381 */ jpayne@69: EXTERN Tcl_UniChar Tcl_GetUniChar(Tcl_Obj *objPtr, int index); jpayne@69: /* 382 */ jpayne@69: EXTERN Tcl_UniChar * Tcl_GetUnicode(Tcl_Obj *objPtr); jpayne@69: /* 383 */ jpayne@69: EXTERN Tcl_Obj * Tcl_GetRange(Tcl_Obj *objPtr, int first, int last); jpayne@69: /* 384 */ jpayne@69: EXTERN void Tcl_AppendUnicodeToObj(Tcl_Obj *objPtr, jpayne@69: const Tcl_UniChar *unicode, int length); jpayne@69: /* 385 */ jpayne@69: EXTERN int Tcl_RegExpMatchObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *textObj, Tcl_Obj *patternObj); jpayne@69: /* 386 */ jpayne@69: EXTERN void Tcl_SetNotifier(Tcl_NotifierProcs *notifierProcPtr); jpayne@69: /* 387 */ jpayne@69: EXTERN Tcl_Mutex * Tcl_GetAllocMutex(void); jpayne@69: /* 388 */ jpayne@69: EXTERN int Tcl_GetChannelNames(Tcl_Interp *interp); jpayne@69: /* 389 */ jpayne@69: EXTERN int Tcl_GetChannelNamesEx(Tcl_Interp *interp, jpayne@69: const char *pattern); jpayne@69: /* 390 */ jpayne@69: EXTERN int Tcl_ProcObjCmd(ClientData clientData, jpayne@69: Tcl_Interp *interp, int objc, jpayne@69: Tcl_Obj *const objv[]); jpayne@69: /* 391 */ jpayne@69: EXTERN void Tcl_ConditionFinalize(Tcl_Condition *condPtr); jpayne@69: /* 392 */ jpayne@69: EXTERN void Tcl_MutexFinalize(Tcl_Mutex *mutex); jpayne@69: /* 393 */ jpayne@69: EXTERN int Tcl_CreateThread(Tcl_ThreadId *idPtr, jpayne@69: Tcl_ThreadCreateProc *proc, jpayne@69: ClientData clientData, int stackSize, jpayne@69: int flags); jpayne@69: /* 394 */ jpayne@69: EXTERN int Tcl_ReadRaw(Tcl_Channel chan, char *dst, jpayne@69: int bytesToRead); jpayne@69: /* 395 */ jpayne@69: EXTERN int Tcl_WriteRaw(Tcl_Channel chan, const char *src, jpayne@69: int srcLen); jpayne@69: /* 396 */ jpayne@69: EXTERN Tcl_Channel Tcl_GetTopChannel(Tcl_Channel chan); jpayne@69: /* 397 */ jpayne@69: EXTERN int Tcl_ChannelBuffered(Tcl_Channel chan); jpayne@69: /* 398 */ jpayne@69: EXTERN CONST84_RETURN char * Tcl_ChannelName( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 399 */ jpayne@69: EXTERN Tcl_ChannelTypeVersion Tcl_ChannelVersion( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 400 */ jpayne@69: EXTERN Tcl_DriverBlockModeProc * Tcl_ChannelBlockModeProc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 401 */ jpayne@69: EXTERN Tcl_DriverCloseProc * Tcl_ChannelCloseProc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 402 */ jpayne@69: EXTERN Tcl_DriverClose2Proc * Tcl_ChannelClose2Proc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 403 */ jpayne@69: EXTERN Tcl_DriverInputProc * Tcl_ChannelInputProc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 404 */ jpayne@69: EXTERN Tcl_DriverOutputProc * Tcl_ChannelOutputProc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 405 */ jpayne@69: EXTERN Tcl_DriverSeekProc * Tcl_ChannelSeekProc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 406 */ jpayne@69: EXTERN Tcl_DriverSetOptionProc * Tcl_ChannelSetOptionProc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 407 */ jpayne@69: EXTERN Tcl_DriverGetOptionProc * Tcl_ChannelGetOptionProc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 408 */ jpayne@69: EXTERN Tcl_DriverWatchProc * Tcl_ChannelWatchProc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 409 */ jpayne@69: EXTERN Tcl_DriverGetHandleProc * Tcl_ChannelGetHandleProc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 410 */ jpayne@69: EXTERN Tcl_DriverFlushProc * Tcl_ChannelFlushProc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 411 */ jpayne@69: EXTERN Tcl_DriverHandlerProc * Tcl_ChannelHandlerProc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 412 */ jpayne@69: EXTERN int Tcl_JoinThread(Tcl_ThreadId threadId, int *result); jpayne@69: /* 413 */ jpayne@69: EXTERN int Tcl_IsChannelShared(Tcl_Channel channel); jpayne@69: /* 414 */ jpayne@69: EXTERN int Tcl_IsChannelRegistered(Tcl_Interp *interp, jpayne@69: Tcl_Channel channel); jpayne@69: /* 415 */ jpayne@69: EXTERN void Tcl_CutChannel(Tcl_Channel channel); jpayne@69: /* 416 */ jpayne@69: EXTERN void Tcl_SpliceChannel(Tcl_Channel channel); jpayne@69: /* 417 */ jpayne@69: EXTERN void Tcl_ClearChannelHandlers(Tcl_Channel channel); jpayne@69: /* 418 */ jpayne@69: EXTERN int Tcl_IsChannelExisting(const char *channelName); jpayne@69: /* 419 */ jpayne@69: EXTERN int Tcl_UniCharNcasecmp(const Tcl_UniChar *ucs, jpayne@69: const Tcl_UniChar *uct, jpayne@69: unsigned long numChars); jpayne@69: /* 420 */ jpayne@69: EXTERN int Tcl_UniCharCaseMatch(const Tcl_UniChar *uniStr, jpayne@69: const Tcl_UniChar *uniPattern, int nocase); jpayne@69: /* 421 */ jpayne@69: EXTERN Tcl_HashEntry * Tcl_FindHashEntry(Tcl_HashTable *tablePtr, jpayne@69: const void *key); jpayne@69: /* 422 */ jpayne@69: EXTERN Tcl_HashEntry * Tcl_CreateHashEntry(Tcl_HashTable *tablePtr, jpayne@69: const void *key, int *newPtr); jpayne@69: /* 423 */ jpayne@69: EXTERN void Tcl_InitCustomHashTable(Tcl_HashTable *tablePtr, jpayne@69: int keyType, const Tcl_HashKeyType *typePtr); jpayne@69: /* 424 */ jpayne@69: EXTERN void Tcl_InitObjHashTable(Tcl_HashTable *tablePtr); jpayne@69: /* 425 */ jpayne@69: EXTERN ClientData Tcl_CommandTraceInfo(Tcl_Interp *interp, jpayne@69: const char *varName, int flags, jpayne@69: Tcl_CommandTraceProc *procPtr, jpayne@69: ClientData prevClientData); jpayne@69: /* 426 */ jpayne@69: EXTERN int Tcl_TraceCommand(Tcl_Interp *interp, jpayne@69: const char *varName, int flags, jpayne@69: Tcl_CommandTraceProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 427 */ jpayne@69: EXTERN void Tcl_UntraceCommand(Tcl_Interp *interp, jpayne@69: const char *varName, int flags, jpayne@69: Tcl_CommandTraceProc *proc, jpayne@69: ClientData clientData); jpayne@69: /* 428 */ jpayne@69: EXTERN char * Tcl_AttemptAlloc(unsigned int size); jpayne@69: /* 429 */ jpayne@69: EXTERN char * Tcl_AttemptDbCkalloc(unsigned int size, jpayne@69: const char *file, int line); jpayne@69: /* 430 */ jpayne@69: EXTERN char * Tcl_AttemptRealloc(char *ptr, unsigned int size); jpayne@69: /* 431 */ jpayne@69: EXTERN char * Tcl_AttemptDbCkrealloc(char *ptr, unsigned int size, jpayne@69: const char *file, int line); jpayne@69: /* 432 */ jpayne@69: EXTERN int Tcl_AttemptSetObjLength(Tcl_Obj *objPtr, int length); jpayne@69: /* 433 */ jpayne@69: EXTERN Tcl_ThreadId Tcl_GetChannelThread(Tcl_Channel channel); jpayne@69: /* 434 */ jpayne@69: EXTERN Tcl_UniChar * Tcl_GetUnicodeFromObj(Tcl_Obj *objPtr, jpayne@69: int *lengthPtr); jpayne@69: /* 435 */ jpayne@69: EXTERN int Tcl_GetMathFuncInfo(Tcl_Interp *interp, jpayne@69: const char *name, int *numArgsPtr, jpayne@69: Tcl_ValueType **argTypesPtr, jpayne@69: Tcl_MathProc **procPtr, jpayne@69: ClientData *clientDataPtr); jpayne@69: /* 436 */ jpayne@69: EXTERN Tcl_Obj * Tcl_ListMathFuncs(Tcl_Interp *interp, jpayne@69: const char *pattern); jpayne@69: /* 437 */ jpayne@69: EXTERN Tcl_Obj * Tcl_SubstObj(Tcl_Interp *interp, Tcl_Obj *objPtr, jpayne@69: int flags); jpayne@69: /* 438 */ jpayne@69: EXTERN int Tcl_DetachChannel(Tcl_Interp *interp, jpayne@69: Tcl_Channel channel); jpayne@69: /* 439 */ jpayne@69: EXTERN int Tcl_IsStandardChannel(Tcl_Channel channel); jpayne@69: /* 440 */ jpayne@69: EXTERN int Tcl_FSCopyFile(Tcl_Obj *srcPathPtr, jpayne@69: Tcl_Obj *destPathPtr); jpayne@69: /* 441 */ jpayne@69: EXTERN int Tcl_FSCopyDirectory(Tcl_Obj *srcPathPtr, jpayne@69: Tcl_Obj *destPathPtr, Tcl_Obj **errorPtr); jpayne@69: /* 442 */ jpayne@69: EXTERN int Tcl_FSCreateDirectory(Tcl_Obj *pathPtr); jpayne@69: /* 443 */ jpayne@69: EXTERN int Tcl_FSDeleteFile(Tcl_Obj *pathPtr); jpayne@69: /* 444 */ jpayne@69: EXTERN int Tcl_FSLoadFile(Tcl_Interp *interp, Tcl_Obj *pathPtr, jpayne@69: const char *sym1, const char *sym2, jpayne@69: Tcl_PackageInitProc **proc1Ptr, jpayne@69: Tcl_PackageInitProc **proc2Ptr, jpayne@69: Tcl_LoadHandle *handlePtr, jpayne@69: Tcl_FSUnloadFileProc **unloadProcPtr); jpayne@69: /* 445 */ jpayne@69: EXTERN int Tcl_FSMatchInDirectory(Tcl_Interp *interp, jpayne@69: Tcl_Obj *result, Tcl_Obj *pathPtr, jpayne@69: const char *pattern, Tcl_GlobTypeData *types); jpayne@69: /* 446 */ jpayne@69: EXTERN Tcl_Obj * Tcl_FSLink(Tcl_Obj *pathPtr, Tcl_Obj *toPtr, jpayne@69: int linkAction); jpayne@69: /* 447 */ jpayne@69: EXTERN int Tcl_FSRemoveDirectory(Tcl_Obj *pathPtr, jpayne@69: int recursive, Tcl_Obj **errorPtr); jpayne@69: /* 448 */ jpayne@69: EXTERN int Tcl_FSRenameFile(Tcl_Obj *srcPathPtr, jpayne@69: Tcl_Obj *destPathPtr); jpayne@69: /* 449 */ jpayne@69: EXTERN int Tcl_FSLstat(Tcl_Obj *pathPtr, Tcl_StatBuf *buf); jpayne@69: /* 450 */ jpayne@69: EXTERN int Tcl_FSUtime(Tcl_Obj *pathPtr, struct utimbuf *tval); jpayne@69: /* 451 */ jpayne@69: EXTERN int Tcl_FSFileAttrsGet(Tcl_Interp *interp, int index, jpayne@69: Tcl_Obj *pathPtr, Tcl_Obj **objPtrRef); jpayne@69: /* 452 */ jpayne@69: EXTERN int Tcl_FSFileAttrsSet(Tcl_Interp *interp, int index, jpayne@69: Tcl_Obj *pathPtr, Tcl_Obj *objPtr); jpayne@69: /* 453 */ jpayne@69: EXTERN const char *CONST86 * Tcl_FSFileAttrStrings(Tcl_Obj *pathPtr, jpayne@69: Tcl_Obj **objPtrRef); jpayne@69: /* 454 */ jpayne@69: EXTERN int Tcl_FSStat(Tcl_Obj *pathPtr, Tcl_StatBuf *buf); jpayne@69: /* 455 */ jpayne@69: EXTERN int Tcl_FSAccess(Tcl_Obj *pathPtr, int mode); jpayne@69: /* 456 */ jpayne@69: EXTERN Tcl_Channel Tcl_FSOpenFileChannel(Tcl_Interp *interp, jpayne@69: Tcl_Obj *pathPtr, const char *modeString, jpayne@69: int permissions); jpayne@69: /* 457 */ jpayne@69: EXTERN Tcl_Obj * Tcl_FSGetCwd(Tcl_Interp *interp); jpayne@69: /* 458 */ jpayne@69: EXTERN int Tcl_FSChdir(Tcl_Obj *pathPtr); jpayne@69: /* 459 */ jpayne@69: EXTERN int Tcl_FSConvertToPathType(Tcl_Interp *interp, jpayne@69: Tcl_Obj *pathPtr); jpayne@69: /* 460 */ jpayne@69: EXTERN Tcl_Obj * Tcl_FSJoinPath(Tcl_Obj *listObj, int elements); jpayne@69: /* 461 */ jpayne@69: EXTERN Tcl_Obj * Tcl_FSSplitPath(Tcl_Obj *pathPtr, int *lenPtr); jpayne@69: /* 462 */ jpayne@69: EXTERN int Tcl_FSEqualPaths(Tcl_Obj *firstPtr, jpayne@69: Tcl_Obj *secondPtr); jpayne@69: /* 463 */ jpayne@69: EXTERN Tcl_Obj * Tcl_FSGetNormalizedPath(Tcl_Interp *interp, jpayne@69: Tcl_Obj *pathPtr); jpayne@69: /* 464 */ jpayne@69: EXTERN Tcl_Obj * Tcl_FSJoinToPath(Tcl_Obj *pathPtr, int objc, jpayne@69: Tcl_Obj *const objv[]); jpayne@69: /* 465 */ jpayne@69: EXTERN ClientData Tcl_FSGetInternalRep(Tcl_Obj *pathPtr, jpayne@69: const Tcl_Filesystem *fsPtr); jpayne@69: /* 466 */ jpayne@69: EXTERN Tcl_Obj * Tcl_FSGetTranslatedPath(Tcl_Interp *interp, jpayne@69: Tcl_Obj *pathPtr); jpayne@69: /* 467 */ jpayne@69: EXTERN int Tcl_FSEvalFile(Tcl_Interp *interp, Tcl_Obj *fileName); jpayne@69: /* 468 */ jpayne@69: EXTERN Tcl_Obj * Tcl_FSNewNativePath( jpayne@69: const Tcl_Filesystem *fromFilesystem, jpayne@69: ClientData clientData); jpayne@69: /* 469 */ jpayne@69: EXTERN const void * Tcl_FSGetNativePath(Tcl_Obj *pathPtr); jpayne@69: /* 470 */ jpayne@69: EXTERN Tcl_Obj * Tcl_FSFileSystemInfo(Tcl_Obj *pathPtr); jpayne@69: /* 471 */ jpayne@69: EXTERN Tcl_Obj * Tcl_FSPathSeparator(Tcl_Obj *pathPtr); jpayne@69: /* 472 */ jpayne@69: EXTERN Tcl_Obj * Tcl_FSListVolumes(void); jpayne@69: /* 473 */ jpayne@69: EXTERN int Tcl_FSRegister(ClientData clientData, jpayne@69: const Tcl_Filesystem *fsPtr); jpayne@69: /* 474 */ jpayne@69: EXTERN int Tcl_FSUnregister(const Tcl_Filesystem *fsPtr); jpayne@69: /* 475 */ jpayne@69: EXTERN ClientData Tcl_FSData(const Tcl_Filesystem *fsPtr); jpayne@69: /* 476 */ jpayne@69: EXTERN const char * Tcl_FSGetTranslatedStringPath(Tcl_Interp *interp, jpayne@69: Tcl_Obj *pathPtr); jpayne@69: /* 477 */ jpayne@69: EXTERN CONST86 Tcl_Filesystem * Tcl_FSGetFileSystemForPath(Tcl_Obj *pathPtr); jpayne@69: /* 478 */ jpayne@69: EXTERN Tcl_PathType Tcl_FSGetPathType(Tcl_Obj *pathPtr); jpayne@69: /* 479 */ jpayne@69: EXTERN int Tcl_OutputBuffered(Tcl_Channel chan); jpayne@69: /* 480 */ jpayne@69: EXTERN void Tcl_FSMountsChanged(const Tcl_Filesystem *fsPtr); jpayne@69: /* 481 */ jpayne@69: EXTERN int Tcl_EvalTokensStandard(Tcl_Interp *interp, jpayne@69: Tcl_Token *tokenPtr, int count); jpayne@69: /* 482 */ jpayne@69: EXTERN void Tcl_GetTime(Tcl_Time *timeBuf); jpayne@69: /* 483 */ jpayne@69: EXTERN Tcl_Trace Tcl_CreateObjTrace(Tcl_Interp *interp, int level, jpayne@69: int flags, Tcl_CmdObjTraceProc *objProc, jpayne@69: ClientData clientData, jpayne@69: Tcl_CmdObjTraceDeleteProc *delProc); jpayne@69: /* 484 */ jpayne@69: EXTERN int Tcl_GetCommandInfoFromToken(Tcl_Command token, jpayne@69: Tcl_CmdInfo *infoPtr); jpayne@69: /* 485 */ jpayne@69: EXTERN int Tcl_SetCommandInfoFromToken(Tcl_Command token, jpayne@69: const Tcl_CmdInfo *infoPtr); jpayne@69: /* 486 */ jpayne@69: EXTERN Tcl_Obj * Tcl_DbNewWideIntObj(Tcl_WideInt wideValue, jpayne@69: const char *file, int line); jpayne@69: /* 487 */ jpayne@69: EXTERN int Tcl_GetWideIntFromObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr, Tcl_WideInt *widePtr); jpayne@69: /* 488 */ jpayne@69: EXTERN Tcl_Obj * Tcl_NewWideIntObj(Tcl_WideInt wideValue); jpayne@69: /* 489 */ jpayne@69: EXTERN void Tcl_SetWideIntObj(Tcl_Obj *objPtr, jpayne@69: Tcl_WideInt wideValue); jpayne@69: /* 490 */ jpayne@69: EXTERN Tcl_StatBuf * Tcl_AllocStatBuf(void); jpayne@69: /* 491 */ jpayne@69: EXTERN Tcl_WideInt Tcl_Seek(Tcl_Channel chan, Tcl_WideInt offset, jpayne@69: int mode); jpayne@69: /* 492 */ jpayne@69: EXTERN Tcl_WideInt Tcl_Tell(Tcl_Channel chan); jpayne@69: /* 493 */ jpayne@69: EXTERN Tcl_DriverWideSeekProc * Tcl_ChannelWideSeekProc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 494 */ jpayne@69: EXTERN int Tcl_DictObjPut(Tcl_Interp *interp, Tcl_Obj *dictPtr, jpayne@69: Tcl_Obj *keyPtr, Tcl_Obj *valuePtr); jpayne@69: /* 495 */ jpayne@69: EXTERN int Tcl_DictObjGet(Tcl_Interp *interp, Tcl_Obj *dictPtr, jpayne@69: Tcl_Obj *keyPtr, Tcl_Obj **valuePtrPtr); jpayne@69: /* 496 */ jpayne@69: EXTERN int Tcl_DictObjRemove(Tcl_Interp *interp, jpayne@69: Tcl_Obj *dictPtr, Tcl_Obj *keyPtr); jpayne@69: /* 497 */ jpayne@69: EXTERN int Tcl_DictObjSize(Tcl_Interp *interp, Tcl_Obj *dictPtr, jpayne@69: int *sizePtr); jpayne@69: /* 498 */ jpayne@69: EXTERN int Tcl_DictObjFirst(Tcl_Interp *interp, jpayne@69: Tcl_Obj *dictPtr, Tcl_DictSearch *searchPtr, jpayne@69: Tcl_Obj **keyPtrPtr, Tcl_Obj **valuePtrPtr, jpayne@69: int *donePtr); jpayne@69: /* 499 */ jpayne@69: EXTERN void Tcl_DictObjNext(Tcl_DictSearch *searchPtr, jpayne@69: Tcl_Obj **keyPtrPtr, Tcl_Obj **valuePtrPtr, jpayne@69: int *donePtr); jpayne@69: /* 500 */ jpayne@69: EXTERN void Tcl_DictObjDone(Tcl_DictSearch *searchPtr); jpayne@69: /* 501 */ jpayne@69: EXTERN int Tcl_DictObjPutKeyList(Tcl_Interp *interp, jpayne@69: Tcl_Obj *dictPtr, int keyc, jpayne@69: Tcl_Obj *const *keyv, Tcl_Obj *valuePtr); jpayne@69: /* 502 */ jpayne@69: EXTERN int Tcl_DictObjRemoveKeyList(Tcl_Interp *interp, jpayne@69: Tcl_Obj *dictPtr, int keyc, jpayne@69: Tcl_Obj *const *keyv); jpayne@69: /* 503 */ jpayne@69: EXTERN Tcl_Obj * Tcl_NewDictObj(void); jpayne@69: /* 504 */ jpayne@69: EXTERN Tcl_Obj * Tcl_DbNewDictObj(const char *file, int line); jpayne@69: /* 505 */ jpayne@69: EXTERN void Tcl_RegisterConfig(Tcl_Interp *interp, jpayne@69: const char *pkgName, jpayne@69: const Tcl_Config *configuration, jpayne@69: const char *valEncoding); jpayne@69: /* 506 */ jpayne@69: EXTERN Tcl_Namespace * Tcl_CreateNamespace(Tcl_Interp *interp, jpayne@69: const char *name, ClientData clientData, jpayne@69: Tcl_NamespaceDeleteProc *deleteProc); jpayne@69: /* 507 */ jpayne@69: EXTERN void Tcl_DeleteNamespace(Tcl_Namespace *nsPtr); jpayne@69: /* 508 */ jpayne@69: EXTERN int Tcl_AppendExportList(Tcl_Interp *interp, jpayne@69: Tcl_Namespace *nsPtr, Tcl_Obj *objPtr); jpayne@69: /* 509 */ jpayne@69: EXTERN int Tcl_Export(Tcl_Interp *interp, Tcl_Namespace *nsPtr, jpayne@69: const char *pattern, int resetListFirst); jpayne@69: /* 510 */ jpayne@69: EXTERN int Tcl_Import(Tcl_Interp *interp, Tcl_Namespace *nsPtr, jpayne@69: const char *pattern, int allowOverwrite); jpayne@69: /* 511 */ jpayne@69: EXTERN int Tcl_ForgetImport(Tcl_Interp *interp, jpayne@69: Tcl_Namespace *nsPtr, const char *pattern); jpayne@69: /* 512 */ jpayne@69: EXTERN Tcl_Namespace * Tcl_GetCurrentNamespace(Tcl_Interp *interp); jpayne@69: /* 513 */ jpayne@69: EXTERN Tcl_Namespace * Tcl_GetGlobalNamespace(Tcl_Interp *interp); jpayne@69: /* 514 */ jpayne@69: EXTERN Tcl_Namespace * Tcl_FindNamespace(Tcl_Interp *interp, jpayne@69: const char *name, jpayne@69: Tcl_Namespace *contextNsPtr, int flags); jpayne@69: /* 515 */ jpayne@69: EXTERN Tcl_Command Tcl_FindCommand(Tcl_Interp *interp, const char *name, jpayne@69: Tcl_Namespace *contextNsPtr, int flags); jpayne@69: /* 516 */ jpayne@69: EXTERN Tcl_Command Tcl_GetCommandFromObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr); jpayne@69: /* 517 */ jpayne@69: EXTERN void Tcl_GetCommandFullName(Tcl_Interp *interp, jpayne@69: Tcl_Command command, Tcl_Obj *objPtr); jpayne@69: /* 518 */ jpayne@69: EXTERN int Tcl_FSEvalFileEx(Tcl_Interp *interp, jpayne@69: Tcl_Obj *fileName, const char *encodingName); jpayne@69: /* 519 */ jpayne@69: EXTERN Tcl_ExitProc * Tcl_SetExitProc(TCL_NORETURN1 Tcl_ExitProc *proc); jpayne@69: /* 520 */ jpayne@69: EXTERN void Tcl_LimitAddHandler(Tcl_Interp *interp, int type, jpayne@69: Tcl_LimitHandlerProc *handlerProc, jpayne@69: ClientData clientData, jpayne@69: Tcl_LimitHandlerDeleteProc *deleteProc); jpayne@69: /* 521 */ jpayne@69: EXTERN void Tcl_LimitRemoveHandler(Tcl_Interp *interp, int type, jpayne@69: Tcl_LimitHandlerProc *handlerProc, jpayne@69: ClientData clientData); jpayne@69: /* 522 */ jpayne@69: EXTERN int Tcl_LimitReady(Tcl_Interp *interp); jpayne@69: /* 523 */ jpayne@69: EXTERN int Tcl_LimitCheck(Tcl_Interp *interp); jpayne@69: /* 524 */ jpayne@69: EXTERN int Tcl_LimitExceeded(Tcl_Interp *interp); jpayne@69: /* 525 */ jpayne@69: EXTERN void Tcl_LimitSetCommands(Tcl_Interp *interp, jpayne@69: int commandLimit); jpayne@69: /* 526 */ jpayne@69: EXTERN void Tcl_LimitSetTime(Tcl_Interp *interp, jpayne@69: Tcl_Time *timeLimitPtr); jpayne@69: /* 527 */ jpayne@69: EXTERN void Tcl_LimitSetGranularity(Tcl_Interp *interp, int type, jpayne@69: int granularity); jpayne@69: /* 528 */ jpayne@69: EXTERN int Tcl_LimitTypeEnabled(Tcl_Interp *interp, int type); jpayne@69: /* 529 */ jpayne@69: EXTERN int Tcl_LimitTypeExceeded(Tcl_Interp *interp, int type); jpayne@69: /* 530 */ jpayne@69: EXTERN void Tcl_LimitTypeSet(Tcl_Interp *interp, int type); jpayne@69: /* 531 */ jpayne@69: EXTERN void Tcl_LimitTypeReset(Tcl_Interp *interp, int type); jpayne@69: /* 532 */ jpayne@69: EXTERN int Tcl_LimitGetCommands(Tcl_Interp *interp); jpayne@69: /* 533 */ jpayne@69: EXTERN void Tcl_LimitGetTime(Tcl_Interp *interp, jpayne@69: Tcl_Time *timeLimitPtr); jpayne@69: /* 534 */ jpayne@69: EXTERN int Tcl_LimitGetGranularity(Tcl_Interp *interp, int type); jpayne@69: /* 535 */ jpayne@69: EXTERN Tcl_InterpState Tcl_SaveInterpState(Tcl_Interp *interp, int status); jpayne@69: /* 536 */ jpayne@69: EXTERN int Tcl_RestoreInterpState(Tcl_Interp *interp, jpayne@69: Tcl_InterpState state); jpayne@69: /* 537 */ jpayne@69: EXTERN void Tcl_DiscardInterpState(Tcl_InterpState state); jpayne@69: /* 538 */ jpayne@69: EXTERN int Tcl_SetReturnOptions(Tcl_Interp *interp, jpayne@69: Tcl_Obj *options); jpayne@69: /* 539 */ jpayne@69: EXTERN Tcl_Obj * Tcl_GetReturnOptions(Tcl_Interp *interp, int result); jpayne@69: /* 540 */ jpayne@69: EXTERN int Tcl_IsEnsemble(Tcl_Command token); jpayne@69: /* 541 */ jpayne@69: EXTERN Tcl_Command Tcl_CreateEnsemble(Tcl_Interp *interp, jpayne@69: const char *name, jpayne@69: Tcl_Namespace *namespacePtr, int flags); jpayne@69: /* 542 */ jpayne@69: EXTERN Tcl_Command Tcl_FindEnsemble(Tcl_Interp *interp, jpayne@69: Tcl_Obj *cmdNameObj, int flags); jpayne@69: /* 543 */ jpayne@69: EXTERN int Tcl_SetEnsembleSubcommandList(Tcl_Interp *interp, jpayne@69: Tcl_Command token, Tcl_Obj *subcmdList); jpayne@69: /* 544 */ jpayne@69: EXTERN int Tcl_SetEnsembleMappingDict(Tcl_Interp *interp, jpayne@69: Tcl_Command token, Tcl_Obj *mapDict); jpayne@69: /* 545 */ jpayne@69: EXTERN int Tcl_SetEnsembleUnknownHandler(Tcl_Interp *interp, jpayne@69: Tcl_Command token, Tcl_Obj *unknownList); jpayne@69: /* 546 */ jpayne@69: EXTERN int Tcl_SetEnsembleFlags(Tcl_Interp *interp, jpayne@69: Tcl_Command token, int flags); jpayne@69: /* 547 */ jpayne@69: EXTERN int Tcl_GetEnsembleSubcommandList(Tcl_Interp *interp, jpayne@69: Tcl_Command token, Tcl_Obj **subcmdListPtr); jpayne@69: /* 548 */ jpayne@69: EXTERN int Tcl_GetEnsembleMappingDict(Tcl_Interp *interp, jpayne@69: Tcl_Command token, Tcl_Obj **mapDictPtr); jpayne@69: /* 549 */ jpayne@69: EXTERN int Tcl_GetEnsembleUnknownHandler(Tcl_Interp *interp, jpayne@69: Tcl_Command token, Tcl_Obj **unknownListPtr); jpayne@69: /* 550 */ jpayne@69: EXTERN int Tcl_GetEnsembleFlags(Tcl_Interp *interp, jpayne@69: Tcl_Command token, int *flagsPtr); jpayne@69: /* 551 */ jpayne@69: EXTERN int Tcl_GetEnsembleNamespace(Tcl_Interp *interp, jpayne@69: Tcl_Command token, jpayne@69: Tcl_Namespace **namespacePtrPtr); jpayne@69: /* 552 */ jpayne@69: EXTERN void Tcl_SetTimeProc(Tcl_GetTimeProc *getProc, jpayne@69: Tcl_ScaleTimeProc *scaleProc, jpayne@69: ClientData clientData); jpayne@69: /* 553 */ jpayne@69: EXTERN void Tcl_QueryTimeProc(Tcl_GetTimeProc **getProc, jpayne@69: Tcl_ScaleTimeProc **scaleProc, jpayne@69: ClientData *clientData); jpayne@69: /* 554 */ jpayne@69: EXTERN Tcl_DriverThreadActionProc * Tcl_ChannelThreadActionProc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 555 */ jpayne@69: EXTERN Tcl_Obj * Tcl_NewBignumObj(mp_int *value); jpayne@69: /* 556 */ jpayne@69: EXTERN Tcl_Obj * Tcl_DbNewBignumObj(mp_int *value, const char *file, jpayne@69: int line); jpayne@69: /* 557 */ jpayne@69: EXTERN void Tcl_SetBignumObj(Tcl_Obj *obj, mp_int *value); jpayne@69: /* 558 */ jpayne@69: EXTERN int Tcl_GetBignumFromObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *obj, mp_int *value); jpayne@69: /* 559 */ jpayne@69: EXTERN int Tcl_TakeBignumFromObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *obj, mp_int *value); jpayne@69: /* 560 */ jpayne@69: EXTERN int Tcl_TruncateChannel(Tcl_Channel chan, jpayne@69: Tcl_WideInt length); jpayne@69: /* 561 */ jpayne@69: EXTERN Tcl_DriverTruncateProc * Tcl_ChannelTruncateProc( jpayne@69: const Tcl_ChannelType *chanTypePtr); jpayne@69: /* 562 */ jpayne@69: EXTERN void Tcl_SetChannelErrorInterp(Tcl_Interp *interp, jpayne@69: Tcl_Obj *msg); jpayne@69: /* 563 */ jpayne@69: EXTERN void Tcl_GetChannelErrorInterp(Tcl_Interp *interp, jpayne@69: Tcl_Obj **msg); jpayne@69: /* 564 */ jpayne@69: EXTERN void Tcl_SetChannelError(Tcl_Channel chan, Tcl_Obj *msg); jpayne@69: /* 565 */ jpayne@69: EXTERN void Tcl_GetChannelError(Tcl_Channel chan, Tcl_Obj **msg); jpayne@69: /* 566 */ jpayne@69: EXTERN int Tcl_InitBignumFromDouble(Tcl_Interp *interp, jpayne@69: double initval, mp_int *toInit); jpayne@69: /* 567 */ jpayne@69: EXTERN Tcl_Obj * Tcl_GetNamespaceUnknownHandler(Tcl_Interp *interp, jpayne@69: Tcl_Namespace *nsPtr); jpayne@69: /* 568 */ jpayne@69: EXTERN int Tcl_SetNamespaceUnknownHandler(Tcl_Interp *interp, jpayne@69: Tcl_Namespace *nsPtr, Tcl_Obj *handlerPtr); jpayne@69: /* 569 */ jpayne@69: EXTERN int Tcl_GetEncodingFromObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr, Tcl_Encoding *encodingPtr); jpayne@69: /* 570 */ jpayne@69: EXTERN Tcl_Obj * Tcl_GetEncodingSearchPath(void); jpayne@69: /* 571 */ jpayne@69: EXTERN int Tcl_SetEncodingSearchPath(Tcl_Obj *searchPath); jpayne@69: /* 572 */ jpayne@69: EXTERN const char * Tcl_GetEncodingNameFromEnvironment( jpayne@69: Tcl_DString *bufPtr); jpayne@69: /* 573 */ jpayne@69: EXTERN int Tcl_PkgRequireProc(Tcl_Interp *interp, jpayne@69: const char *name, int objc, jpayne@69: Tcl_Obj *const objv[], void *clientDataPtr); jpayne@69: /* 574 */ jpayne@69: EXTERN void Tcl_AppendObjToErrorInfo(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr); jpayne@69: /* 575 */ jpayne@69: EXTERN void Tcl_AppendLimitedToObj(Tcl_Obj *objPtr, jpayne@69: const char *bytes, int length, int limit, jpayne@69: const char *ellipsis); jpayne@69: /* 576 */ jpayne@69: EXTERN Tcl_Obj * Tcl_Format(Tcl_Interp *interp, const char *format, jpayne@69: int objc, Tcl_Obj *const objv[]); jpayne@69: /* 577 */ jpayne@69: EXTERN int Tcl_AppendFormatToObj(Tcl_Interp *interp, jpayne@69: Tcl_Obj *objPtr, const char *format, jpayne@69: int objc, Tcl_Obj *const objv[]); jpayne@69: /* 578 */ jpayne@69: EXTERN Tcl_Obj * Tcl_ObjPrintf(const char *format, ...) TCL_FORMAT_PRINTF(1, 2); jpayne@69: /* 579 */ jpayne@69: EXTERN void Tcl_AppendPrintfToObj(Tcl_Obj *objPtr, jpayne@69: const char *format, ...) TCL_FORMAT_PRINTF(2, 3); jpayne@69: /* 580 */ jpayne@69: EXTERN int Tcl_CancelEval(Tcl_Interp *interp, jpayne@69: Tcl_Obj *resultObjPtr, ClientData clientData, jpayne@69: int flags); jpayne@69: /* 581 */ jpayne@69: EXTERN int Tcl_Canceled(Tcl_Interp *interp, int flags); jpayne@69: /* 582 */ jpayne@69: EXTERN int Tcl_CreatePipe(Tcl_Interp *interp, jpayne@69: Tcl_Channel *rchan, Tcl_Channel *wchan, jpayne@69: int flags); jpayne@69: /* 583 */ jpayne@69: EXTERN Tcl_Command Tcl_NRCreateCommand(Tcl_Interp *interp, jpayne@69: const char *cmdName, Tcl_ObjCmdProc *proc, jpayne@69: Tcl_ObjCmdProc *nreProc, jpayne@69: ClientData clientData, jpayne@69: Tcl_CmdDeleteProc *deleteProc); jpayne@69: /* 584 */ jpayne@69: EXTERN int Tcl_NREvalObj(Tcl_Interp *interp, Tcl_Obj *objPtr, jpayne@69: int flags); jpayne@69: /* 585 */ jpayne@69: EXTERN int Tcl_NREvalObjv(Tcl_Interp *interp, int objc, jpayne@69: Tcl_Obj *const objv[], int flags); jpayne@69: /* 586 */ jpayne@69: EXTERN int Tcl_NRCmdSwap(Tcl_Interp *interp, Tcl_Command cmd, jpayne@69: int objc, Tcl_Obj *const objv[], int flags); jpayne@69: /* 587 */ jpayne@69: EXTERN void Tcl_NRAddCallback(Tcl_Interp *interp, jpayne@69: Tcl_NRPostProc *postProcPtr, jpayne@69: ClientData data0, ClientData data1, jpayne@69: ClientData data2, ClientData data3); jpayne@69: /* 588 */ jpayne@69: EXTERN int Tcl_NRCallObjProc(Tcl_Interp *interp, jpayne@69: Tcl_ObjCmdProc *objProc, jpayne@69: ClientData clientData, int objc, jpayne@69: Tcl_Obj *const objv[]); jpayne@69: /* 589 */ jpayne@69: EXTERN unsigned Tcl_GetFSDeviceFromStat(const Tcl_StatBuf *statPtr); jpayne@69: /* 590 */ jpayne@69: EXTERN unsigned Tcl_GetFSInodeFromStat(const Tcl_StatBuf *statPtr); jpayne@69: /* 591 */ jpayne@69: EXTERN unsigned Tcl_GetModeFromStat(const Tcl_StatBuf *statPtr); jpayne@69: /* 592 */ jpayne@69: EXTERN int Tcl_GetLinkCountFromStat(const Tcl_StatBuf *statPtr); jpayne@69: /* 593 */ jpayne@69: EXTERN int Tcl_GetUserIdFromStat(const Tcl_StatBuf *statPtr); jpayne@69: /* 594 */ jpayne@69: EXTERN int Tcl_GetGroupIdFromStat(const Tcl_StatBuf *statPtr); jpayne@69: /* 595 */ jpayne@69: EXTERN int Tcl_GetDeviceTypeFromStat(const Tcl_StatBuf *statPtr); jpayne@69: /* 596 */ jpayne@69: EXTERN Tcl_WideInt Tcl_GetAccessTimeFromStat(const Tcl_StatBuf *statPtr); jpayne@69: /* 597 */ jpayne@69: EXTERN Tcl_WideInt Tcl_GetModificationTimeFromStat( jpayne@69: const Tcl_StatBuf *statPtr); jpayne@69: /* 598 */ jpayne@69: EXTERN Tcl_WideInt Tcl_GetChangeTimeFromStat(const Tcl_StatBuf *statPtr); jpayne@69: /* 599 */ jpayne@69: EXTERN Tcl_WideUInt Tcl_GetSizeFromStat(const Tcl_StatBuf *statPtr); jpayne@69: /* 600 */ jpayne@69: EXTERN Tcl_WideUInt Tcl_GetBlocksFromStat(const Tcl_StatBuf *statPtr); jpayne@69: /* 601 */ jpayne@69: EXTERN unsigned Tcl_GetBlockSizeFromStat(const Tcl_StatBuf *statPtr); jpayne@69: /* 602 */ jpayne@69: EXTERN int Tcl_SetEnsembleParameterList(Tcl_Interp *interp, jpayne@69: Tcl_Command token, Tcl_Obj *paramList); jpayne@69: /* 603 */ jpayne@69: EXTERN int Tcl_GetEnsembleParameterList(Tcl_Interp *interp, jpayne@69: Tcl_Command token, Tcl_Obj **paramListPtr); jpayne@69: /* 604 */ jpayne@69: EXTERN int Tcl_ParseArgsObjv(Tcl_Interp *interp, jpayne@69: const Tcl_ArgvInfo *argTable, int *objcPtr, jpayne@69: Tcl_Obj *const *objv, Tcl_Obj ***remObjv); jpayne@69: /* 605 */ jpayne@69: EXTERN int Tcl_GetErrorLine(Tcl_Interp *interp); jpayne@69: /* 606 */ jpayne@69: EXTERN void Tcl_SetErrorLine(Tcl_Interp *interp, int lineNum); jpayne@69: /* 607 */ jpayne@69: EXTERN void Tcl_TransferResult(Tcl_Interp *sourceInterp, jpayne@69: int code, Tcl_Interp *targetInterp); jpayne@69: /* 608 */ jpayne@69: EXTERN int Tcl_InterpActive(Tcl_Interp *interp); jpayne@69: /* 609 */ jpayne@69: EXTERN void Tcl_BackgroundException(Tcl_Interp *interp, int code); jpayne@69: /* 610 */ jpayne@69: EXTERN int Tcl_ZlibDeflate(Tcl_Interp *interp, int format, jpayne@69: Tcl_Obj *data, int level, jpayne@69: Tcl_Obj *gzipHeaderDictObj); jpayne@69: /* 611 */ jpayne@69: EXTERN int Tcl_ZlibInflate(Tcl_Interp *interp, int format, jpayne@69: Tcl_Obj *data, int buffersize, jpayne@69: Tcl_Obj *gzipHeaderDictObj); jpayne@69: /* 612 */ jpayne@69: EXTERN unsigned int Tcl_ZlibCRC32(unsigned int crc, jpayne@69: const unsigned char *buf, int len); jpayne@69: /* 613 */ jpayne@69: EXTERN unsigned int Tcl_ZlibAdler32(unsigned int adler, jpayne@69: const unsigned char *buf, int len); jpayne@69: /* 614 */ jpayne@69: EXTERN int Tcl_ZlibStreamInit(Tcl_Interp *interp, int mode, jpayne@69: int format, int level, Tcl_Obj *dictObj, jpayne@69: Tcl_ZlibStream *zshandle); jpayne@69: /* 615 */ jpayne@69: EXTERN Tcl_Obj * Tcl_ZlibStreamGetCommandName(Tcl_ZlibStream zshandle); jpayne@69: /* 616 */ jpayne@69: EXTERN int Tcl_ZlibStreamEof(Tcl_ZlibStream zshandle); jpayne@69: /* 617 */ jpayne@69: EXTERN int Tcl_ZlibStreamChecksum(Tcl_ZlibStream zshandle); jpayne@69: /* 618 */ jpayne@69: EXTERN int Tcl_ZlibStreamPut(Tcl_ZlibStream zshandle, jpayne@69: Tcl_Obj *data, int flush); jpayne@69: /* 619 */ jpayne@69: EXTERN int Tcl_ZlibStreamGet(Tcl_ZlibStream zshandle, jpayne@69: Tcl_Obj *data, int count); jpayne@69: /* 620 */ jpayne@69: EXTERN int Tcl_ZlibStreamClose(Tcl_ZlibStream zshandle); jpayne@69: /* 621 */ jpayne@69: EXTERN int Tcl_ZlibStreamReset(Tcl_ZlibStream zshandle); jpayne@69: /* 622 */ jpayne@69: EXTERN void Tcl_SetStartupScript(Tcl_Obj *path, jpayne@69: const char *encoding); jpayne@69: /* 623 */ jpayne@69: EXTERN Tcl_Obj * Tcl_GetStartupScript(const char **encodingPtr); jpayne@69: /* 624 */ jpayne@69: EXTERN int Tcl_CloseEx(Tcl_Interp *interp, Tcl_Channel chan, jpayne@69: int flags); jpayne@69: /* 625 */ jpayne@69: EXTERN int Tcl_NRExprObj(Tcl_Interp *interp, Tcl_Obj *objPtr, jpayne@69: Tcl_Obj *resultPtr); jpayne@69: /* 626 */ jpayne@69: EXTERN int Tcl_NRSubstObj(Tcl_Interp *interp, Tcl_Obj *objPtr, jpayne@69: int flags); jpayne@69: /* 627 */ jpayne@69: EXTERN int Tcl_LoadFile(Tcl_Interp *interp, Tcl_Obj *pathPtr, jpayne@69: const char *const symv[], int flags, jpayne@69: void *procPtrs, Tcl_LoadHandle *handlePtr); jpayne@69: /* 628 */ jpayne@69: EXTERN void * Tcl_FindSymbol(Tcl_Interp *interp, jpayne@69: Tcl_LoadHandle handle, const char *symbol); jpayne@69: /* 629 */ jpayne@69: EXTERN int Tcl_FSUnloadFile(Tcl_Interp *interp, jpayne@69: Tcl_LoadHandle handlePtr); jpayne@69: /* 630 */ jpayne@69: EXTERN void Tcl_ZlibStreamSetCompressionDictionary( jpayne@69: Tcl_ZlibStream zhandle, jpayne@69: Tcl_Obj *compressionDictionaryObj); jpayne@69: /* Slot 631 is reserved */ jpayne@69: /* Slot 632 is reserved */ jpayne@69: /* Slot 633 is reserved */ jpayne@69: /* Slot 634 is reserved */ jpayne@69: /* Slot 635 is reserved */ jpayne@69: /* Slot 636 is reserved */ jpayne@69: /* Slot 637 is reserved */ jpayne@69: /* Slot 638 is reserved */ jpayne@69: /* Slot 639 is reserved */ jpayne@69: /* Slot 640 is reserved */ jpayne@69: /* Slot 641 is reserved */ jpayne@69: /* Slot 642 is reserved */ jpayne@69: /* Slot 643 is reserved */ jpayne@69: /* Slot 644 is reserved */ jpayne@69: /* Slot 645 is reserved */ jpayne@69: /* Slot 646 is reserved */ jpayne@69: /* Slot 647 is reserved */ jpayne@69: /* Slot 648 is reserved */ jpayne@69: /* Slot 649 is reserved */ jpayne@69: /* Slot 650 is reserved */ jpayne@69: /* Slot 651 is reserved */ jpayne@69: /* Slot 652 is reserved */ jpayne@69: /* Slot 653 is reserved */ jpayne@69: /* Slot 654 is reserved */ jpayne@69: /* Slot 655 is reserved */ jpayne@69: /* Slot 656 is reserved */ jpayne@69: /* Slot 657 is reserved */ jpayne@69: /* Slot 658 is reserved */ jpayne@69: /* Slot 659 is reserved */ jpayne@69: /* Slot 660 is reserved */ jpayne@69: /* Slot 661 is reserved */ jpayne@69: /* Slot 662 is reserved */ jpayne@69: /* Slot 663 is reserved */ jpayne@69: /* Slot 664 is reserved */ jpayne@69: /* Slot 665 is reserved */ jpayne@69: /* Slot 666 is reserved */ jpayne@69: /* Slot 667 is reserved */ jpayne@69: /* Slot 668 is reserved */ jpayne@69: /* Slot 669 is reserved */ jpayne@69: /* Slot 670 is reserved */ jpayne@69: /* Slot 671 is reserved */ jpayne@69: /* Slot 672 is reserved */ jpayne@69: /* Slot 673 is reserved */ jpayne@69: /* Slot 674 is reserved */ jpayne@69: /* Slot 675 is reserved */ jpayne@69: /* Slot 676 is reserved */ jpayne@69: /* Slot 677 is reserved */ jpayne@69: /* Slot 678 is reserved */ jpayne@69: /* Slot 679 is reserved */ jpayne@69: /* Slot 680 is reserved */ jpayne@69: /* Slot 681 is reserved */ jpayne@69: /* Slot 682 is reserved */ jpayne@69: /* 683 */ jpayne@69: EXTERN void TclUnusedStubEntry(void); jpayne@69: jpayne@69: typedef struct { jpayne@69: const struct TclPlatStubs *tclPlatStubs; jpayne@69: const struct TclIntStubs *tclIntStubs; jpayne@69: const struct TclIntPlatStubs *tclIntPlatStubs; jpayne@69: } TclStubHooks; jpayne@69: jpayne@69: typedef struct TclStubs { jpayne@69: int magic; jpayne@69: const TclStubHooks *hooks; jpayne@69: jpayne@69: int (*tcl_PkgProvideEx) (Tcl_Interp *interp, const char *name, const char *version, const void *clientData); /* 0 */ jpayne@69: CONST84_RETURN char * (*tcl_PkgRequireEx) (Tcl_Interp *interp, const char *name, const char *version, int exact, void *clientDataPtr); /* 1 */ jpayne@69: TCL_NORETURN1 void (*tcl_Panic) (const char *format, ...) TCL_FORMAT_PRINTF(1, 2); /* 2 */ jpayne@69: char * (*tcl_Alloc) (unsigned int size); /* 3 */ jpayne@69: void (*tcl_Free) (char *ptr); /* 4 */ jpayne@69: char * (*tcl_Realloc) (char *ptr, unsigned int size); /* 5 */ jpayne@69: char * (*tcl_DbCkalloc) (unsigned int size, const char *file, int line); /* 6 */ jpayne@69: void (*tcl_DbCkfree) (char *ptr, const char *file, int line); /* 7 */ jpayne@69: char * (*tcl_DbCkrealloc) (char *ptr, unsigned int size, const char *file, int line); /* 8 */ jpayne@69: #if !defined(_WIN32) && !defined(MAC_OSX_TCL) /* UNIX */ jpayne@69: void (*tcl_CreateFileHandler) (int fd, int mask, Tcl_FileProc *proc, ClientData clientData); /* 9 */ jpayne@69: #endif /* UNIX */ jpayne@69: #if defined(_WIN32) /* WIN */ jpayne@69: void (*reserved9)(void); jpayne@69: #endif /* WIN */ jpayne@69: #ifdef MAC_OSX_TCL /* MACOSX */ jpayne@69: void (*tcl_CreateFileHandler) (int fd, int mask, Tcl_FileProc *proc, ClientData clientData); /* 9 */ jpayne@69: #endif /* MACOSX */ jpayne@69: #if !defined(_WIN32) && !defined(MAC_OSX_TCL) /* UNIX */ jpayne@69: void (*tcl_DeleteFileHandler) (int fd); /* 10 */ jpayne@69: #endif /* UNIX */ jpayne@69: #if defined(_WIN32) /* WIN */ jpayne@69: void (*reserved10)(void); jpayne@69: #endif /* WIN */ jpayne@69: #ifdef MAC_OSX_TCL /* MACOSX */ jpayne@69: void (*tcl_DeleteFileHandler) (int fd); /* 10 */ jpayne@69: #endif /* MACOSX */ jpayne@69: void (*tcl_SetTimer) (const Tcl_Time *timePtr); /* 11 */ jpayne@69: void (*tcl_Sleep) (int ms); /* 12 */ jpayne@69: int (*tcl_WaitForEvent) (const Tcl_Time *timePtr); /* 13 */ jpayne@69: int (*tcl_AppendAllObjTypes) (Tcl_Interp *interp, Tcl_Obj *objPtr); /* 14 */ jpayne@69: void (*tcl_AppendStringsToObj) (Tcl_Obj *objPtr, ...); /* 15 */ jpayne@69: void (*tcl_AppendToObj) (Tcl_Obj *objPtr, const char *bytes, int length); /* 16 */ jpayne@69: Tcl_Obj * (*tcl_ConcatObj) (int objc, Tcl_Obj *const objv[]); /* 17 */ jpayne@69: int (*tcl_ConvertToType) (Tcl_Interp *interp, Tcl_Obj *objPtr, const Tcl_ObjType *typePtr); /* 18 */ jpayne@69: void (*tcl_DbDecrRefCount) (Tcl_Obj *objPtr, const char *file, int line); /* 19 */ jpayne@69: void (*tcl_DbIncrRefCount) (Tcl_Obj *objPtr, const char *file, int line); /* 20 */ jpayne@69: int (*tcl_DbIsShared) (Tcl_Obj *objPtr, const char *file, int line); /* 21 */ jpayne@69: Tcl_Obj * (*tcl_DbNewBooleanObj) (int intValue, const char *file, int line); /* 22 */ jpayne@69: Tcl_Obj * (*tcl_DbNewByteArrayObj) (const unsigned char *bytes, int length, const char *file, int line); /* 23 */ jpayne@69: Tcl_Obj * (*tcl_DbNewDoubleObj) (double doubleValue, const char *file, int line); /* 24 */ jpayne@69: Tcl_Obj * (*tcl_DbNewListObj) (int objc, Tcl_Obj *const *objv, const char *file, int line); /* 25 */ jpayne@69: Tcl_Obj * (*tcl_DbNewLongObj) (long longValue, const char *file, int line); /* 26 */ jpayne@69: Tcl_Obj * (*tcl_DbNewObj) (const char *file, int line); /* 27 */ jpayne@69: Tcl_Obj * (*tcl_DbNewStringObj) (const char *bytes, int length, const char *file, int line); /* 28 */ jpayne@69: Tcl_Obj * (*tcl_DuplicateObj) (Tcl_Obj *objPtr); /* 29 */ jpayne@69: void (*tclFreeObj) (Tcl_Obj *objPtr); /* 30 */ jpayne@69: int (*tcl_GetBoolean) (Tcl_Interp *interp, const char *src, int *intPtr); /* 31 */ jpayne@69: int (*tcl_GetBooleanFromObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, int *intPtr); /* 32 */ jpayne@69: unsigned char * (*tcl_GetByteArrayFromObj) (Tcl_Obj *objPtr, int *lengthPtr); /* 33 */ jpayne@69: int (*tcl_GetDouble) (Tcl_Interp *interp, const char *src, double *doublePtr); /* 34 */ jpayne@69: int (*tcl_GetDoubleFromObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, double *doublePtr); /* 35 */ jpayne@69: int (*tcl_GetIndexFromObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, CONST84 char *const *tablePtr, const char *msg, int flags, int *indexPtr); /* 36 */ jpayne@69: int (*tcl_GetInt) (Tcl_Interp *interp, const char *src, int *intPtr); /* 37 */ jpayne@69: int (*tcl_GetIntFromObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, int *intPtr); /* 38 */ jpayne@69: int (*tcl_GetLongFromObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, long *longPtr); /* 39 */ jpayne@69: CONST86 Tcl_ObjType * (*tcl_GetObjType) (const char *typeName); /* 40 */ jpayne@69: char * (*tcl_GetStringFromObj) (Tcl_Obj *objPtr, int *lengthPtr); /* 41 */ jpayne@69: void (*tcl_InvalidateStringRep) (Tcl_Obj *objPtr); /* 42 */ jpayne@69: int (*tcl_ListObjAppendList) (Tcl_Interp *interp, Tcl_Obj *listPtr, Tcl_Obj *elemListPtr); /* 43 */ jpayne@69: int (*tcl_ListObjAppendElement) (Tcl_Interp *interp, Tcl_Obj *listPtr, Tcl_Obj *objPtr); /* 44 */ jpayne@69: int (*tcl_ListObjGetElements) (Tcl_Interp *interp, Tcl_Obj *listPtr, int *objcPtr, Tcl_Obj ***objvPtr); /* 45 */ jpayne@69: int (*tcl_ListObjIndex) (Tcl_Interp *interp, Tcl_Obj *listPtr, int index, Tcl_Obj **objPtrPtr); /* 46 */ jpayne@69: int (*tcl_ListObjLength) (Tcl_Interp *interp, Tcl_Obj *listPtr, int *lengthPtr); /* 47 */ jpayne@69: int (*tcl_ListObjReplace) (Tcl_Interp *interp, Tcl_Obj *listPtr, int first, int count, int objc, Tcl_Obj *const objv[]); /* 48 */ jpayne@69: Tcl_Obj * (*tcl_NewBooleanObj) (int intValue); /* 49 */ jpayne@69: Tcl_Obj * (*tcl_NewByteArrayObj) (const unsigned char *bytes, int length); /* 50 */ jpayne@69: Tcl_Obj * (*tcl_NewDoubleObj) (double doubleValue); /* 51 */ jpayne@69: Tcl_Obj * (*tcl_NewIntObj) (int intValue); /* 52 */ jpayne@69: Tcl_Obj * (*tcl_NewListObj) (int objc, Tcl_Obj *const objv[]); /* 53 */ jpayne@69: Tcl_Obj * (*tcl_NewLongObj) (long longValue); /* 54 */ jpayne@69: Tcl_Obj * (*tcl_NewObj) (void); /* 55 */ jpayne@69: Tcl_Obj * (*tcl_NewStringObj) (const char *bytes, int length); /* 56 */ jpayne@69: void (*tcl_SetBooleanObj) (Tcl_Obj *objPtr, int intValue); /* 57 */ jpayne@69: unsigned char * (*tcl_SetByteArrayLength) (Tcl_Obj *objPtr, int numBytes); /* 58 */ jpayne@69: void (*tcl_SetByteArrayObj) (Tcl_Obj *objPtr, const unsigned char *bytes, int numBytes); /* 59 */ jpayne@69: void (*tcl_SetDoubleObj) (Tcl_Obj *objPtr, double doubleValue); /* 60 */ jpayne@69: void (*tcl_SetIntObj) (Tcl_Obj *objPtr, int intValue); /* 61 */ jpayne@69: void (*tcl_SetListObj) (Tcl_Obj *objPtr, int objc, Tcl_Obj *const objv[]); /* 62 */ jpayne@69: void (*tcl_SetLongObj) (Tcl_Obj *objPtr, long longValue); /* 63 */ jpayne@69: void (*tcl_SetObjLength) (Tcl_Obj *objPtr, int length); /* 64 */ jpayne@69: void (*tcl_SetStringObj) (Tcl_Obj *objPtr, const char *bytes, int length); /* 65 */ jpayne@69: void (*tcl_AddErrorInfo) (Tcl_Interp *interp, const char *message); /* 66 */ jpayne@69: void (*tcl_AddObjErrorInfo) (Tcl_Interp *interp, const char *message, int length); /* 67 */ jpayne@69: void (*tcl_AllowExceptions) (Tcl_Interp *interp); /* 68 */ jpayne@69: void (*tcl_AppendElement) (Tcl_Interp *interp, const char *element); /* 69 */ jpayne@69: void (*tcl_AppendResult) (Tcl_Interp *interp, ...); /* 70 */ jpayne@69: Tcl_AsyncHandler (*tcl_AsyncCreate) (Tcl_AsyncProc *proc, ClientData clientData); /* 71 */ jpayne@69: void (*tcl_AsyncDelete) (Tcl_AsyncHandler async); /* 72 */ jpayne@69: int (*tcl_AsyncInvoke) (Tcl_Interp *interp, int code); /* 73 */ jpayne@69: void (*tcl_AsyncMark) (Tcl_AsyncHandler async); /* 74 */ jpayne@69: int (*tcl_AsyncReady) (void); /* 75 */ jpayne@69: void (*tcl_BackgroundError) (Tcl_Interp *interp); /* 76 */ jpayne@69: char (*tcl_Backslash) (const char *src, int *readPtr); /* 77 */ jpayne@69: int (*tcl_BadChannelOption) (Tcl_Interp *interp, const char *optionName, const char *optionList); /* 78 */ jpayne@69: void (*tcl_CallWhenDeleted) (Tcl_Interp *interp, Tcl_InterpDeleteProc *proc, ClientData clientData); /* 79 */ jpayne@69: void (*tcl_CancelIdleCall) (Tcl_IdleProc *idleProc, ClientData clientData); /* 80 */ jpayne@69: int (*tcl_Close) (Tcl_Interp *interp, Tcl_Channel chan); /* 81 */ jpayne@69: int (*tcl_CommandComplete) (const char *cmd); /* 82 */ jpayne@69: char * (*tcl_Concat) (int argc, CONST84 char *const *argv); /* 83 */ jpayne@69: int (*tcl_ConvertElement) (const char *src, char *dst, int flags); /* 84 */ jpayne@69: int (*tcl_ConvertCountedElement) (const char *src, int length, char *dst, int flags); /* 85 */ jpayne@69: int (*tcl_CreateAlias) (Tcl_Interp *childInterp, const char *childCmd, Tcl_Interp *target, const char *targetCmd, int argc, CONST84 char *const *argv); /* 86 */ jpayne@69: int (*tcl_CreateAliasObj) (Tcl_Interp *childInterp, const char *childCmd, Tcl_Interp *target, const char *targetCmd, int objc, Tcl_Obj *const objv[]); /* 87 */ jpayne@69: Tcl_Channel (*tcl_CreateChannel) (const Tcl_ChannelType *typePtr, const char *chanName, ClientData instanceData, int mask); /* 88 */ jpayne@69: void (*tcl_CreateChannelHandler) (Tcl_Channel chan, int mask, Tcl_ChannelProc *proc, ClientData clientData); /* 89 */ jpayne@69: void (*tcl_CreateCloseHandler) (Tcl_Channel chan, Tcl_CloseProc *proc, ClientData clientData); /* 90 */ jpayne@69: Tcl_Command (*tcl_CreateCommand) (Tcl_Interp *interp, const char *cmdName, Tcl_CmdProc *proc, ClientData clientData, Tcl_CmdDeleteProc *deleteProc); /* 91 */ jpayne@69: void (*tcl_CreateEventSource) (Tcl_EventSetupProc *setupProc, Tcl_EventCheckProc *checkProc, ClientData clientData); /* 92 */ jpayne@69: void (*tcl_CreateExitHandler) (Tcl_ExitProc *proc, ClientData clientData); /* 93 */ jpayne@69: Tcl_Interp * (*tcl_CreateInterp) (void); /* 94 */ jpayne@69: void (*tcl_CreateMathFunc) (Tcl_Interp *interp, const char *name, int numArgs, Tcl_ValueType *argTypes, Tcl_MathProc *proc, ClientData clientData); /* 95 */ jpayne@69: Tcl_Command (*tcl_CreateObjCommand) (Tcl_Interp *interp, const char *cmdName, Tcl_ObjCmdProc *proc, ClientData clientData, Tcl_CmdDeleteProc *deleteProc); /* 96 */ jpayne@69: Tcl_Interp * (*tcl_CreateSlave) (Tcl_Interp *interp, const char *name, int isSafe); /* 97 */ jpayne@69: Tcl_TimerToken (*tcl_CreateTimerHandler) (int milliseconds, Tcl_TimerProc *proc, ClientData clientData); /* 98 */ jpayne@69: Tcl_Trace (*tcl_CreateTrace) (Tcl_Interp *interp, int level, Tcl_CmdTraceProc *proc, ClientData clientData); /* 99 */ jpayne@69: void (*tcl_DeleteAssocData) (Tcl_Interp *interp, const char *name); /* 100 */ jpayne@69: void (*tcl_DeleteChannelHandler) (Tcl_Channel chan, Tcl_ChannelProc *proc, ClientData clientData); /* 101 */ jpayne@69: void (*tcl_DeleteCloseHandler) (Tcl_Channel chan, Tcl_CloseProc *proc, ClientData clientData); /* 102 */ jpayne@69: int (*tcl_DeleteCommand) (Tcl_Interp *interp, const char *cmdName); /* 103 */ jpayne@69: int (*tcl_DeleteCommandFromToken) (Tcl_Interp *interp, Tcl_Command command); /* 104 */ jpayne@69: void (*tcl_DeleteEvents) (Tcl_EventDeleteProc *proc, ClientData clientData); /* 105 */ jpayne@69: void (*tcl_DeleteEventSource) (Tcl_EventSetupProc *setupProc, Tcl_EventCheckProc *checkProc, ClientData clientData); /* 106 */ jpayne@69: void (*tcl_DeleteExitHandler) (Tcl_ExitProc *proc, ClientData clientData); /* 107 */ jpayne@69: void (*tcl_DeleteHashEntry) (Tcl_HashEntry *entryPtr); /* 108 */ jpayne@69: void (*tcl_DeleteHashTable) (Tcl_HashTable *tablePtr); /* 109 */ jpayne@69: void (*tcl_DeleteInterp) (Tcl_Interp *interp); /* 110 */ jpayne@69: void (*tcl_DetachPids) (int numPids, Tcl_Pid *pidPtr); /* 111 */ jpayne@69: void (*tcl_DeleteTimerHandler) (Tcl_TimerToken token); /* 112 */ jpayne@69: void (*tcl_DeleteTrace) (Tcl_Interp *interp, Tcl_Trace trace); /* 113 */ jpayne@69: void (*tcl_DontCallWhenDeleted) (Tcl_Interp *interp, Tcl_InterpDeleteProc *proc, ClientData clientData); /* 114 */ jpayne@69: int (*tcl_DoOneEvent) (int flags); /* 115 */ jpayne@69: void (*tcl_DoWhenIdle) (Tcl_IdleProc *proc, ClientData clientData); /* 116 */ jpayne@69: char * (*tcl_DStringAppend) (Tcl_DString *dsPtr, const char *bytes, int length); /* 117 */ jpayne@69: char * (*tcl_DStringAppendElement) (Tcl_DString *dsPtr, const char *element); /* 118 */ jpayne@69: void (*tcl_DStringEndSublist) (Tcl_DString *dsPtr); /* 119 */ jpayne@69: void (*tcl_DStringFree) (Tcl_DString *dsPtr); /* 120 */ jpayne@69: void (*tcl_DStringGetResult) (Tcl_Interp *interp, Tcl_DString *dsPtr); /* 121 */ jpayne@69: void (*tcl_DStringInit) (Tcl_DString *dsPtr); /* 122 */ jpayne@69: void (*tcl_DStringResult) (Tcl_Interp *interp, Tcl_DString *dsPtr); /* 123 */ jpayne@69: void (*tcl_DStringSetLength) (Tcl_DString *dsPtr, int length); /* 124 */ jpayne@69: void (*tcl_DStringStartSublist) (Tcl_DString *dsPtr); /* 125 */ jpayne@69: int (*tcl_Eof) (Tcl_Channel chan); /* 126 */ jpayne@69: CONST84_RETURN char * (*tcl_ErrnoId) (void); /* 127 */ jpayne@69: CONST84_RETURN char * (*tcl_ErrnoMsg) (int err); /* 128 */ jpayne@69: int (*tcl_Eval) (Tcl_Interp *interp, const char *script); /* 129 */ jpayne@69: int (*tcl_EvalFile) (Tcl_Interp *interp, const char *fileName); /* 130 */ jpayne@69: int (*tcl_EvalObj) (Tcl_Interp *interp, Tcl_Obj *objPtr); /* 131 */ jpayne@69: void (*tcl_EventuallyFree) (ClientData clientData, Tcl_FreeProc *freeProc); /* 132 */ jpayne@69: TCL_NORETURN1 void (*tcl_Exit) (int status); /* 133 */ jpayne@69: int (*tcl_ExposeCommand) (Tcl_Interp *interp, const char *hiddenCmdToken, const char *cmdName); /* 134 */ jpayne@69: int (*tcl_ExprBoolean) (Tcl_Interp *interp, const char *expr, int *ptr); /* 135 */ jpayne@69: int (*tcl_ExprBooleanObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, int *ptr); /* 136 */ jpayne@69: int (*tcl_ExprDouble) (Tcl_Interp *interp, const char *expr, double *ptr); /* 137 */ jpayne@69: int (*tcl_ExprDoubleObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, double *ptr); /* 138 */ jpayne@69: int (*tcl_ExprLong) (Tcl_Interp *interp, const char *expr, long *ptr); /* 139 */ jpayne@69: int (*tcl_ExprLongObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, long *ptr); /* 140 */ jpayne@69: int (*tcl_ExprObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, Tcl_Obj **resultPtrPtr); /* 141 */ jpayne@69: int (*tcl_ExprString) (Tcl_Interp *interp, const char *expr); /* 142 */ jpayne@69: void (*tcl_Finalize) (void); /* 143 */ jpayne@69: void (*tcl_FindExecutable) (const char *argv0); /* 144 */ jpayne@69: Tcl_HashEntry * (*tcl_FirstHashEntry) (Tcl_HashTable *tablePtr, Tcl_HashSearch *searchPtr); /* 145 */ jpayne@69: int (*tcl_Flush) (Tcl_Channel chan); /* 146 */ jpayne@69: void (*tcl_FreeResult) (Tcl_Interp *interp); /* 147 */ jpayne@69: int (*tcl_GetAlias) (Tcl_Interp *interp, const char *childCmd, Tcl_Interp **targetInterpPtr, CONST84 char **targetCmdPtr, int *argcPtr, CONST84 char ***argvPtr); /* 148 */ jpayne@69: int (*tcl_GetAliasObj) (Tcl_Interp *interp, const char *childCmd, Tcl_Interp **targetInterpPtr, CONST84 char **targetCmdPtr, int *objcPtr, Tcl_Obj ***objv); /* 149 */ jpayne@69: ClientData (*tcl_GetAssocData) (Tcl_Interp *interp, const char *name, Tcl_InterpDeleteProc **procPtr); /* 150 */ jpayne@69: Tcl_Channel (*tcl_GetChannel) (Tcl_Interp *interp, const char *chanName, int *modePtr); /* 151 */ jpayne@69: int (*tcl_GetChannelBufferSize) (Tcl_Channel chan); /* 152 */ jpayne@69: int (*tcl_GetChannelHandle) (Tcl_Channel chan, int direction, ClientData *handlePtr); /* 153 */ jpayne@69: ClientData (*tcl_GetChannelInstanceData) (Tcl_Channel chan); /* 154 */ jpayne@69: int (*tcl_GetChannelMode) (Tcl_Channel chan); /* 155 */ jpayne@69: CONST84_RETURN char * (*tcl_GetChannelName) (Tcl_Channel chan); /* 156 */ jpayne@69: int (*tcl_GetChannelOption) (Tcl_Interp *interp, Tcl_Channel chan, const char *optionName, Tcl_DString *dsPtr); /* 157 */ jpayne@69: CONST86 Tcl_ChannelType * (*tcl_GetChannelType) (Tcl_Channel chan); /* 158 */ jpayne@69: int (*tcl_GetCommandInfo) (Tcl_Interp *interp, const char *cmdName, Tcl_CmdInfo *infoPtr); /* 159 */ jpayne@69: CONST84_RETURN char * (*tcl_GetCommandName) (Tcl_Interp *interp, Tcl_Command command); /* 160 */ jpayne@69: int (*tcl_GetErrno) (void); /* 161 */ jpayne@69: CONST84_RETURN char * (*tcl_GetHostName) (void); /* 162 */ jpayne@69: int (*tcl_GetInterpPath) (Tcl_Interp *interp, Tcl_Interp *childInterp); /* 163 */ jpayne@69: Tcl_Interp * (*tcl_GetMaster) (Tcl_Interp *interp); /* 164 */ jpayne@69: const char * (*tcl_GetNameOfExecutable) (void); /* 165 */ jpayne@69: Tcl_Obj * (*tcl_GetObjResult) (Tcl_Interp *interp); /* 166 */ jpayne@69: #if !defined(_WIN32) && !defined(MAC_OSX_TCL) /* UNIX */ jpayne@69: int (*tcl_GetOpenFile) (Tcl_Interp *interp, const char *chanID, int forWriting, int checkUsage, ClientData *filePtr); /* 167 */ jpayne@69: #endif /* UNIX */ jpayne@69: #if defined(_WIN32) /* WIN */ jpayne@69: void (*reserved167)(void); jpayne@69: #endif /* WIN */ jpayne@69: #ifdef MAC_OSX_TCL /* MACOSX */ jpayne@69: int (*tcl_GetOpenFile) (Tcl_Interp *interp, const char *chanID, int forWriting, int checkUsage, ClientData *filePtr); /* 167 */ jpayne@69: #endif /* MACOSX */ jpayne@69: Tcl_PathType (*tcl_GetPathType) (const char *path); /* 168 */ jpayne@69: int (*tcl_Gets) (Tcl_Channel chan, Tcl_DString *dsPtr); /* 169 */ jpayne@69: int (*tcl_GetsObj) (Tcl_Channel chan, Tcl_Obj *objPtr); /* 170 */ jpayne@69: int (*tcl_GetServiceMode) (void); /* 171 */ jpayne@69: Tcl_Interp * (*tcl_GetSlave) (Tcl_Interp *interp, const char *name); /* 172 */ jpayne@69: Tcl_Channel (*tcl_GetStdChannel) (int type); /* 173 */ jpayne@69: CONST84_RETURN char * (*tcl_GetStringResult) (Tcl_Interp *interp); /* 174 */ jpayne@69: CONST84_RETURN char * (*tcl_GetVar) (Tcl_Interp *interp, const char *varName, int flags); /* 175 */ jpayne@69: CONST84_RETURN char * (*tcl_GetVar2) (Tcl_Interp *interp, const char *part1, const char *part2, int flags); /* 176 */ jpayne@69: int (*tcl_GlobalEval) (Tcl_Interp *interp, const char *command); /* 177 */ jpayne@69: int (*tcl_GlobalEvalObj) (Tcl_Interp *interp, Tcl_Obj *objPtr); /* 178 */ jpayne@69: int (*tcl_HideCommand) (Tcl_Interp *interp, const char *cmdName, const char *hiddenCmdToken); /* 179 */ jpayne@69: int (*tcl_Init) (Tcl_Interp *interp); /* 180 */ jpayne@69: void (*tcl_InitHashTable) (Tcl_HashTable *tablePtr, int keyType); /* 181 */ jpayne@69: int (*tcl_InputBlocked) (Tcl_Channel chan); /* 182 */ jpayne@69: int (*tcl_InputBuffered) (Tcl_Channel chan); /* 183 */ jpayne@69: int (*tcl_InterpDeleted) (Tcl_Interp *interp); /* 184 */ jpayne@69: int (*tcl_IsSafe) (Tcl_Interp *interp); /* 185 */ jpayne@69: char * (*tcl_JoinPath) (int argc, CONST84 char *const *argv, Tcl_DString *resultPtr); /* 186 */ jpayne@69: int (*tcl_LinkVar) (Tcl_Interp *interp, const char *varName, char *addr, int type); /* 187 */ jpayne@69: void (*reserved188)(void); jpayne@69: Tcl_Channel (*tcl_MakeFileChannel) (ClientData handle, int mode); /* 189 */ jpayne@69: int (*tcl_MakeSafe) (Tcl_Interp *interp); /* 190 */ jpayne@69: Tcl_Channel (*tcl_MakeTcpClientChannel) (ClientData tcpSocket); /* 191 */ jpayne@69: char * (*tcl_Merge) (int argc, CONST84 char *const *argv); /* 192 */ jpayne@69: Tcl_HashEntry * (*tcl_NextHashEntry) (Tcl_HashSearch *searchPtr); /* 193 */ jpayne@69: void (*tcl_NotifyChannel) (Tcl_Channel channel, int mask); /* 194 */ jpayne@69: Tcl_Obj * (*tcl_ObjGetVar2) (Tcl_Interp *interp, Tcl_Obj *part1Ptr, Tcl_Obj *part2Ptr, int flags); /* 195 */ jpayne@69: Tcl_Obj * (*tcl_ObjSetVar2) (Tcl_Interp *interp, Tcl_Obj *part1Ptr, Tcl_Obj *part2Ptr, Tcl_Obj *newValuePtr, int flags); /* 196 */ jpayne@69: Tcl_Channel (*tcl_OpenCommandChannel) (Tcl_Interp *interp, int argc, CONST84 char **argv, int flags); /* 197 */ jpayne@69: Tcl_Channel (*tcl_OpenFileChannel) (Tcl_Interp *interp, const char *fileName, const char *modeString, int permissions); /* 198 */ jpayne@69: Tcl_Channel (*tcl_OpenTcpClient) (Tcl_Interp *interp, int port, const char *address, const char *myaddr, int myport, int flags); /* 199 */ jpayne@69: Tcl_Channel (*tcl_OpenTcpServer) (Tcl_Interp *interp, int port, const char *host, Tcl_TcpAcceptProc *acceptProc, ClientData callbackData); /* 200 */ jpayne@69: void (*tcl_Preserve) (ClientData data); /* 201 */ jpayne@69: void (*tcl_PrintDouble) (Tcl_Interp *interp, double value, char *dst); /* 202 */ jpayne@69: int (*tcl_PutEnv) (const char *assignment); /* 203 */ jpayne@69: CONST84_RETURN char * (*tcl_PosixError) (Tcl_Interp *interp); /* 204 */ jpayne@69: void (*tcl_QueueEvent) (Tcl_Event *evPtr, Tcl_QueuePosition position); /* 205 */ jpayne@69: int (*tcl_Read) (Tcl_Channel chan, char *bufPtr, int toRead); /* 206 */ jpayne@69: void (*tcl_ReapDetachedProcs) (void); /* 207 */ jpayne@69: int (*tcl_RecordAndEval) (Tcl_Interp *interp, const char *cmd, int flags); /* 208 */ jpayne@69: int (*tcl_RecordAndEvalObj) (Tcl_Interp *interp, Tcl_Obj *cmdPtr, int flags); /* 209 */ jpayne@69: void (*tcl_RegisterChannel) (Tcl_Interp *interp, Tcl_Channel chan); /* 210 */ jpayne@69: void (*tcl_RegisterObjType) (const Tcl_ObjType *typePtr); /* 211 */ jpayne@69: Tcl_RegExp (*tcl_RegExpCompile) (Tcl_Interp *interp, const char *pattern); /* 212 */ jpayne@69: int (*tcl_RegExpExec) (Tcl_Interp *interp, Tcl_RegExp regexp, const char *text, const char *start); /* 213 */ jpayne@69: int (*tcl_RegExpMatch) (Tcl_Interp *interp, const char *text, const char *pattern); /* 214 */ jpayne@69: void (*tcl_RegExpRange) (Tcl_RegExp regexp, int index, CONST84 char **startPtr, CONST84 char **endPtr); /* 215 */ jpayne@69: void (*tcl_Release) (ClientData clientData); /* 216 */ jpayne@69: void (*tcl_ResetResult) (Tcl_Interp *interp); /* 217 */ jpayne@69: int (*tcl_ScanElement) (const char *src, int *flagPtr); /* 218 */ jpayne@69: int (*tcl_ScanCountedElement) (const char *src, int length, int *flagPtr); /* 219 */ jpayne@69: int (*tcl_SeekOld) (Tcl_Channel chan, int offset, int mode); /* 220 */ jpayne@69: int (*tcl_ServiceAll) (void); /* 221 */ jpayne@69: int (*tcl_ServiceEvent) (int flags); /* 222 */ jpayne@69: void (*tcl_SetAssocData) (Tcl_Interp *interp, const char *name, Tcl_InterpDeleteProc *proc, ClientData clientData); /* 223 */ jpayne@69: void (*tcl_SetChannelBufferSize) (Tcl_Channel chan, int sz); /* 224 */ jpayne@69: int (*tcl_SetChannelOption) (Tcl_Interp *interp, Tcl_Channel chan, const char *optionName, const char *newValue); /* 225 */ jpayne@69: int (*tcl_SetCommandInfo) (Tcl_Interp *interp, const char *cmdName, const Tcl_CmdInfo *infoPtr); /* 226 */ jpayne@69: void (*tcl_SetErrno) (int err); /* 227 */ jpayne@69: void (*tcl_SetErrorCode) (Tcl_Interp *interp, ...); /* 228 */ jpayne@69: void (*tcl_SetMaxBlockTime) (const Tcl_Time *timePtr); /* 229 */ jpayne@69: void (*tcl_SetPanicProc) (TCL_NORETURN1 Tcl_PanicProc *panicProc); /* 230 */ jpayne@69: int (*tcl_SetRecursionLimit) (Tcl_Interp *interp, int depth); /* 231 */ jpayne@69: void (*tcl_SetResult) (Tcl_Interp *interp, char *result, Tcl_FreeProc *freeProc); /* 232 */ jpayne@69: int (*tcl_SetServiceMode) (int mode); /* 233 */ jpayne@69: void (*tcl_SetObjErrorCode) (Tcl_Interp *interp, Tcl_Obj *errorObjPtr); /* 234 */ jpayne@69: void (*tcl_SetObjResult) (Tcl_Interp *interp, Tcl_Obj *resultObjPtr); /* 235 */ jpayne@69: void (*tcl_SetStdChannel) (Tcl_Channel channel, int type); /* 236 */ jpayne@69: CONST84_RETURN char * (*tcl_SetVar) (Tcl_Interp *interp, const char *varName, const char *newValue, int flags); /* 237 */ jpayne@69: CONST84_RETURN char * (*tcl_SetVar2) (Tcl_Interp *interp, const char *part1, const char *part2, const char *newValue, int flags); /* 238 */ jpayne@69: CONST84_RETURN char * (*tcl_SignalId) (int sig); /* 239 */ jpayne@69: CONST84_RETURN char * (*tcl_SignalMsg) (int sig); /* 240 */ jpayne@69: void (*tcl_SourceRCFile) (Tcl_Interp *interp); /* 241 */ jpayne@69: int (*tcl_SplitList) (Tcl_Interp *interp, const char *listStr, int *argcPtr, CONST84 char ***argvPtr); /* 242 */ jpayne@69: void (*tcl_SplitPath) (const char *path, int *argcPtr, CONST84 char ***argvPtr); /* 243 */ jpayne@69: void (*tcl_StaticPackage) (Tcl_Interp *interp, const char *prefix, Tcl_PackageInitProc *initProc, Tcl_PackageInitProc *safeInitProc); /* 244 */ jpayne@69: int (*tcl_StringMatch) (const char *str, const char *pattern); /* 245 */ jpayne@69: int (*tcl_TellOld) (Tcl_Channel chan); /* 246 */ jpayne@69: int (*tcl_TraceVar) (Tcl_Interp *interp, const char *varName, int flags, Tcl_VarTraceProc *proc, ClientData clientData); /* 247 */ jpayne@69: int (*tcl_TraceVar2) (Tcl_Interp *interp, const char *part1, const char *part2, int flags, Tcl_VarTraceProc *proc, ClientData clientData); /* 248 */ jpayne@69: char * (*tcl_TranslateFileName) (Tcl_Interp *interp, const char *name, Tcl_DString *bufferPtr); /* 249 */ jpayne@69: int (*tcl_Ungets) (Tcl_Channel chan, const char *str, int len, int atHead); /* 250 */ jpayne@69: void (*tcl_UnlinkVar) (Tcl_Interp *interp, const char *varName); /* 251 */ jpayne@69: int (*tcl_UnregisterChannel) (Tcl_Interp *interp, Tcl_Channel chan); /* 252 */ jpayne@69: int (*tcl_UnsetVar) (Tcl_Interp *interp, const char *varName, int flags); /* 253 */ jpayne@69: int (*tcl_UnsetVar2) (Tcl_Interp *interp, const char *part1, const char *part2, int flags); /* 254 */ jpayne@69: void (*tcl_UntraceVar) (Tcl_Interp *interp, const char *varName, int flags, Tcl_VarTraceProc *proc, ClientData clientData); /* 255 */ jpayne@69: void (*tcl_UntraceVar2) (Tcl_Interp *interp, const char *part1, const char *part2, int flags, Tcl_VarTraceProc *proc, ClientData clientData); /* 256 */ jpayne@69: void (*tcl_UpdateLinkedVar) (Tcl_Interp *interp, const char *varName); /* 257 */ jpayne@69: int (*tcl_UpVar) (Tcl_Interp *interp, const char *frameName, const char *varName, const char *localName, int flags); /* 258 */ jpayne@69: int (*tcl_UpVar2) (Tcl_Interp *interp, const char *frameName, const char *part1, const char *part2, const char *localName, int flags); /* 259 */ jpayne@69: int (*tcl_VarEval) (Tcl_Interp *interp, ...); /* 260 */ jpayne@69: ClientData (*tcl_VarTraceInfo) (Tcl_Interp *interp, const char *varName, int flags, Tcl_VarTraceProc *procPtr, ClientData prevClientData); /* 261 */ jpayne@69: ClientData (*tcl_VarTraceInfo2) (Tcl_Interp *interp, const char *part1, const char *part2, int flags, Tcl_VarTraceProc *procPtr, ClientData prevClientData); /* 262 */ jpayne@69: int (*tcl_Write) (Tcl_Channel chan, const char *s, int slen); /* 263 */ jpayne@69: void (*tcl_WrongNumArgs) (Tcl_Interp *interp, int objc, Tcl_Obj *const objv[], const char *message); /* 264 */ jpayne@69: int (*tcl_DumpActiveMemory) (const char *fileName); /* 265 */ jpayne@69: void (*tcl_ValidateAllMemory) (const char *file, int line); /* 266 */ jpayne@69: void (*tcl_AppendResultVA) (Tcl_Interp *interp, va_list argList); /* 267 */ jpayne@69: void (*tcl_AppendStringsToObjVA) (Tcl_Obj *objPtr, va_list argList); /* 268 */ jpayne@69: char * (*tcl_HashStats) (Tcl_HashTable *tablePtr); /* 269 */ jpayne@69: CONST84_RETURN char * (*tcl_ParseVar) (Tcl_Interp *interp, const char *start, CONST84 char **termPtr); /* 270 */ jpayne@69: CONST84_RETURN char * (*tcl_PkgPresent) (Tcl_Interp *interp, const char *name, const char *version, int exact); /* 271 */ jpayne@69: CONST84_RETURN char * (*tcl_PkgPresentEx) (Tcl_Interp *interp, const char *name, const char *version, int exact, void *clientDataPtr); /* 272 */ jpayne@69: int (*tcl_PkgProvide) (Tcl_Interp *interp, const char *name, const char *version); /* 273 */ jpayne@69: CONST84_RETURN char * (*tcl_PkgRequire) (Tcl_Interp *interp, const char *name, const char *version, int exact); /* 274 */ jpayne@69: void (*tcl_SetErrorCodeVA) (Tcl_Interp *interp, va_list argList); /* 275 */ jpayne@69: int (*tcl_VarEvalVA) (Tcl_Interp *interp, va_list argList); /* 276 */ jpayne@69: Tcl_Pid (*tcl_WaitPid) (Tcl_Pid pid, int *statPtr, int options); /* 277 */ jpayne@69: TCL_NORETURN1 void (*tcl_PanicVA) (const char *format, va_list argList); /* 278 */ jpayne@69: void (*tcl_GetVersion) (int *major, int *minor, int *patchLevel, int *type); /* 279 */ jpayne@69: void (*tcl_InitMemory) (Tcl_Interp *interp); /* 280 */ jpayne@69: Tcl_Channel (*tcl_StackChannel) (Tcl_Interp *interp, const Tcl_ChannelType *typePtr, ClientData instanceData, int mask, Tcl_Channel prevChan); /* 281 */ jpayne@69: int (*tcl_UnstackChannel) (Tcl_Interp *interp, Tcl_Channel chan); /* 282 */ jpayne@69: Tcl_Channel (*tcl_GetStackedChannel) (Tcl_Channel chan); /* 283 */ jpayne@69: void (*tcl_SetMainLoop) (Tcl_MainLoopProc *proc); /* 284 */ jpayne@69: void (*reserved285)(void); jpayne@69: void (*tcl_AppendObjToObj) (Tcl_Obj *objPtr, Tcl_Obj *appendObjPtr); /* 286 */ jpayne@69: Tcl_Encoding (*tcl_CreateEncoding) (const Tcl_EncodingType *typePtr); /* 287 */ jpayne@69: void (*tcl_CreateThreadExitHandler) (Tcl_ExitProc *proc, ClientData clientData); /* 288 */ jpayne@69: void (*tcl_DeleteThreadExitHandler) (Tcl_ExitProc *proc, ClientData clientData); /* 289 */ jpayne@69: void (*tcl_DiscardResult) (Tcl_SavedResult *statePtr); /* 290 */ jpayne@69: int (*tcl_EvalEx) (Tcl_Interp *interp, const char *script, int numBytes, int flags); /* 291 */ jpayne@69: int (*tcl_EvalObjv) (Tcl_Interp *interp, int objc, Tcl_Obj *const objv[], int flags); /* 292 */ jpayne@69: int (*tcl_EvalObjEx) (Tcl_Interp *interp, Tcl_Obj *objPtr, int flags); /* 293 */ jpayne@69: void (*tcl_ExitThread) (int status); /* 294 */ jpayne@69: int (*tcl_ExternalToUtf) (Tcl_Interp *interp, Tcl_Encoding encoding, const char *src, int srcLen, int flags, Tcl_EncodingState *statePtr, char *dst, int dstLen, int *srcReadPtr, int *dstWrotePtr, int *dstCharsPtr); /* 295 */ jpayne@69: char * (*tcl_ExternalToUtfDString) (Tcl_Encoding encoding, const char *src, int srcLen, Tcl_DString *dsPtr); /* 296 */ jpayne@69: void (*tcl_FinalizeThread) (void); /* 297 */ jpayne@69: void (*tcl_FinalizeNotifier) (ClientData clientData); /* 298 */ jpayne@69: void (*tcl_FreeEncoding) (Tcl_Encoding encoding); /* 299 */ jpayne@69: Tcl_ThreadId (*tcl_GetCurrentThread) (void); /* 300 */ jpayne@69: Tcl_Encoding (*tcl_GetEncoding) (Tcl_Interp *interp, const char *name); /* 301 */ jpayne@69: CONST84_RETURN char * (*tcl_GetEncodingName) (Tcl_Encoding encoding); /* 302 */ jpayne@69: void (*tcl_GetEncodingNames) (Tcl_Interp *interp); /* 303 */ jpayne@69: int (*tcl_GetIndexFromObjStruct) (Tcl_Interp *interp, Tcl_Obj *objPtr, const void *tablePtr, int offset, const char *msg, int flags, int *indexPtr); /* 304 */ jpayne@69: void * (*tcl_GetThreadData) (Tcl_ThreadDataKey *keyPtr, int size); /* 305 */ jpayne@69: Tcl_Obj * (*tcl_GetVar2Ex) (Tcl_Interp *interp, const char *part1, const char *part2, int flags); /* 306 */ jpayne@69: ClientData (*tcl_InitNotifier) (void); /* 307 */ jpayne@69: void (*tcl_MutexLock) (Tcl_Mutex *mutexPtr); /* 308 */ jpayne@69: void (*tcl_MutexUnlock) (Tcl_Mutex *mutexPtr); /* 309 */ jpayne@69: void (*tcl_ConditionNotify) (Tcl_Condition *condPtr); /* 310 */ jpayne@69: void (*tcl_ConditionWait) (Tcl_Condition *condPtr, Tcl_Mutex *mutexPtr, const Tcl_Time *timePtr); /* 311 */ jpayne@69: int (*tcl_NumUtfChars) (const char *src, int length); /* 312 */ jpayne@69: int (*tcl_ReadChars) (Tcl_Channel channel, Tcl_Obj *objPtr, int charsToRead, int appendFlag); /* 313 */ jpayne@69: void (*tcl_RestoreResult) (Tcl_Interp *interp, Tcl_SavedResult *statePtr); /* 314 */ jpayne@69: void (*tcl_SaveResult) (Tcl_Interp *interp, Tcl_SavedResult *statePtr); /* 315 */ jpayne@69: int (*tcl_SetSystemEncoding) (Tcl_Interp *interp, const char *name); /* 316 */ jpayne@69: Tcl_Obj * (*tcl_SetVar2Ex) (Tcl_Interp *interp, const char *part1, const char *part2, Tcl_Obj *newValuePtr, int flags); /* 317 */ jpayne@69: void (*tcl_ThreadAlert) (Tcl_ThreadId threadId); /* 318 */ jpayne@69: void (*tcl_ThreadQueueEvent) (Tcl_ThreadId threadId, Tcl_Event *evPtr, Tcl_QueuePosition position); /* 319 */ jpayne@69: Tcl_UniChar (*tcl_UniCharAtIndex) (const char *src, int index); /* 320 */ jpayne@69: Tcl_UniChar (*tcl_UniCharToLower) (int ch); /* 321 */ jpayne@69: Tcl_UniChar (*tcl_UniCharToTitle) (int ch); /* 322 */ jpayne@69: Tcl_UniChar (*tcl_UniCharToUpper) (int ch); /* 323 */ jpayne@69: int (*tcl_UniCharToUtf) (int ch, char *buf); /* 324 */ jpayne@69: CONST84_RETURN char * (*tcl_UtfAtIndex) (const char *src, int index); /* 325 */ jpayne@69: int (*tcl_UtfCharComplete) (const char *src, int length); /* 326 */ jpayne@69: int (*tcl_UtfBackslash) (const char *src, int *readPtr, char *dst); /* 327 */ jpayne@69: CONST84_RETURN char * (*tcl_UtfFindFirst) (const char *src, int ch); /* 328 */ jpayne@69: CONST84_RETURN char * (*tcl_UtfFindLast) (const char *src, int ch); /* 329 */ jpayne@69: CONST84_RETURN char * (*tcl_UtfNext) (const char *src); /* 330 */ jpayne@69: CONST84_RETURN char * (*tcl_UtfPrev) (const char *src, const char *start); /* 331 */ jpayne@69: int (*tcl_UtfToExternal) (Tcl_Interp *interp, Tcl_Encoding encoding, const char *src, int srcLen, int flags, Tcl_EncodingState *statePtr, char *dst, int dstLen, int *srcReadPtr, int *dstWrotePtr, int *dstCharsPtr); /* 332 */ jpayne@69: char * (*tcl_UtfToExternalDString) (Tcl_Encoding encoding, const char *src, int srcLen, Tcl_DString *dsPtr); /* 333 */ jpayne@69: int (*tcl_UtfToLower) (char *src); /* 334 */ jpayne@69: int (*tcl_UtfToTitle) (char *src); /* 335 */ jpayne@69: int (*tcl_UtfToUniChar) (const char *src, Tcl_UniChar *chPtr); /* 336 */ jpayne@69: int (*tcl_UtfToUpper) (char *src); /* 337 */ jpayne@69: int (*tcl_WriteChars) (Tcl_Channel chan, const char *src, int srcLen); /* 338 */ jpayne@69: int (*tcl_WriteObj) (Tcl_Channel chan, Tcl_Obj *objPtr); /* 339 */ jpayne@69: char * (*tcl_GetString) (Tcl_Obj *objPtr); /* 340 */ jpayne@69: CONST84_RETURN char * (*tcl_GetDefaultEncodingDir) (void); /* 341 */ jpayne@69: void (*tcl_SetDefaultEncodingDir) (const char *path); /* 342 */ jpayne@69: void (*tcl_AlertNotifier) (ClientData clientData); /* 343 */ jpayne@69: void (*tcl_ServiceModeHook) (int mode); /* 344 */ jpayne@69: int (*tcl_UniCharIsAlnum) (int ch); /* 345 */ jpayne@69: int (*tcl_UniCharIsAlpha) (int ch); /* 346 */ jpayne@69: int (*tcl_UniCharIsDigit) (int ch); /* 347 */ jpayne@69: int (*tcl_UniCharIsLower) (int ch); /* 348 */ jpayne@69: int (*tcl_UniCharIsSpace) (int ch); /* 349 */ jpayne@69: int (*tcl_UniCharIsUpper) (int ch); /* 350 */ jpayne@69: int (*tcl_UniCharIsWordChar) (int ch); /* 351 */ jpayne@69: int (*tcl_UniCharLen) (const Tcl_UniChar *uniStr); /* 352 */ jpayne@69: int (*tcl_UniCharNcmp) (const Tcl_UniChar *ucs, const Tcl_UniChar *uct, unsigned long numChars); /* 353 */ jpayne@69: char * (*tcl_UniCharToUtfDString) (const Tcl_UniChar *uniStr, int uniLength, Tcl_DString *dsPtr); /* 354 */ jpayne@69: Tcl_UniChar * (*tcl_UtfToUniCharDString) (const char *src, int length, Tcl_DString *dsPtr); /* 355 */ jpayne@69: Tcl_RegExp (*tcl_GetRegExpFromObj) (Tcl_Interp *interp, Tcl_Obj *patObj, int flags); /* 356 */ jpayne@69: Tcl_Obj * (*tcl_EvalTokens) (Tcl_Interp *interp, Tcl_Token *tokenPtr, int count); /* 357 */ jpayne@69: void (*tcl_FreeParse) (Tcl_Parse *parsePtr); /* 358 */ jpayne@69: void (*tcl_LogCommandInfo) (Tcl_Interp *interp, const char *script, const char *command, int length); /* 359 */ jpayne@69: int (*tcl_ParseBraces) (Tcl_Interp *interp, const char *start, int numBytes, Tcl_Parse *parsePtr, int append, CONST84 char **termPtr); /* 360 */ jpayne@69: int (*tcl_ParseCommand) (Tcl_Interp *interp, const char *start, int numBytes, int nested, Tcl_Parse *parsePtr); /* 361 */ jpayne@69: int (*tcl_ParseExpr) (Tcl_Interp *interp, const char *start, int numBytes, Tcl_Parse *parsePtr); /* 362 */ jpayne@69: int (*tcl_ParseQuotedString) (Tcl_Interp *interp, const char *start, int numBytes, Tcl_Parse *parsePtr, int append, CONST84 char **termPtr); /* 363 */ jpayne@69: int (*tcl_ParseVarName) (Tcl_Interp *interp, const char *start, int numBytes, Tcl_Parse *parsePtr, int append); /* 364 */ jpayne@69: char * (*tcl_GetCwd) (Tcl_Interp *interp, Tcl_DString *cwdPtr); /* 365 */ jpayne@69: int (*tcl_Chdir) (const char *dirName); /* 366 */ jpayne@69: int (*tcl_Access) (const char *path, int mode); /* 367 */ jpayne@69: int (*tcl_Stat) (const char *path, struct stat *bufPtr); /* 368 */ jpayne@69: int (*tcl_UtfNcmp) (const char *s1, const char *s2, unsigned long n); /* 369 */ jpayne@69: int (*tcl_UtfNcasecmp) (const char *s1, const char *s2, unsigned long n); /* 370 */ jpayne@69: int (*tcl_StringCaseMatch) (const char *str, const char *pattern, int nocase); /* 371 */ jpayne@69: int (*tcl_UniCharIsControl) (int ch); /* 372 */ jpayne@69: int (*tcl_UniCharIsGraph) (int ch); /* 373 */ jpayne@69: int (*tcl_UniCharIsPrint) (int ch); /* 374 */ jpayne@69: int (*tcl_UniCharIsPunct) (int ch); /* 375 */ jpayne@69: int (*tcl_RegExpExecObj) (Tcl_Interp *interp, Tcl_RegExp regexp, Tcl_Obj *textObj, int offset, int nmatches, int flags); /* 376 */ jpayne@69: void (*tcl_RegExpGetInfo) (Tcl_RegExp regexp, Tcl_RegExpInfo *infoPtr); /* 377 */ jpayne@69: Tcl_Obj * (*tcl_NewUnicodeObj) (const Tcl_UniChar *unicode, int numChars); /* 378 */ jpayne@69: void (*tcl_SetUnicodeObj) (Tcl_Obj *objPtr, const Tcl_UniChar *unicode, int numChars); /* 379 */ jpayne@69: int (*tcl_GetCharLength) (Tcl_Obj *objPtr); /* 380 */ jpayne@69: Tcl_UniChar (*tcl_GetUniChar) (Tcl_Obj *objPtr, int index); /* 381 */ jpayne@69: Tcl_UniChar * (*tcl_GetUnicode) (Tcl_Obj *objPtr); /* 382 */ jpayne@69: Tcl_Obj * (*tcl_GetRange) (Tcl_Obj *objPtr, int first, int last); /* 383 */ jpayne@69: void (*tcl_AppendUnicodeToObj) (Tcl_Obj *objPtr, const Tcl_UniChar *unicode, int length); /* 384 */ jpayne@69: int (*tcl_RegExpMatchObj) (Tcl_Interp *interp, Tcl_Obj *textObj, Tcl_Obj *patternObj); /* 385 */ jpayne@69: void (*tcl_SetNotifier) (Tcl_NotifierProcs *notifierProcPtr); /* 386 */ jpayne@69: Tcl_Mutex * (*tcl_GetAllocMutex) (void); /* 387 */ jpayne@69: int (*tcl_GetChannelNames) (Tcl_Interp *interp); /* 388 */ jpayne@69: int (*tcl_GetChannelNamesEx) (Tcl_Interp *interp, const char *pattern); /* 389 */ jpayne@69: int (*tcl_ProcObjCmd) (ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); /* 390 */ jpayne@69: void (*tcl_ConditionFinalize) (Tcl_Condition *condPtr); /* 391 */ jpayne@69: void (*tcl_MutexFinalize) (Tcl_Mutex *mutex); /* 392 */ jpayne@69: int (*tcl_CreateThread) (Tcl_ThreadId *idPtr, Tcl_ThreadCreateProc *proc, ClientData clientData, int stackSize, int flags); /* 393 */ jpayne@69: int (*tcl_ReadRaw) (Tcl_Channel chan, char *dst, int bytesToRead); /* 394 */ jpayne@69: int (*tcl_WriteRaw) (Tcl_Channel chan, const char *src, int srcLen); /* 395 */ jpayne@69: Tcl_Channel (*tcl_GetTopChannel) (Tcl_Channel chan); /* 396 */ jpayne@69: int (*tcl_ChannelBuffered) (Tcl_Channel chan); /* 397 */ jpayne@69: CONST84_RETURN char * (*tcl_ChannelName) (const Tcl_ChannelType *chanTypePtr); /* 398 */ jpayne@69: Tcl_ChannelTypeVersion (*tcl_ChannelVersion) (const Tcl_ChannelType *chanTypePtr); /* 399 */ jpayne@69: Tcl_DriverBlockModeProc * (*tcl_ChannelBlockModeProc) (const Tcl_ChannelType *chanTypePtr); /* 400 */ jpayne@69: Tcl_DriverCloseProc * (*tcl_ChannelCloseProc) (const Tcl_ChannelType *chanTypePtr); /* 401 */ jpayne@69: Tcl_DriverClose2Proc * (*tcl_ChannelClose2Proc) (const Tcl_ChannelType *chanTypePtr); /* 402 */ jpayne@69: Tcl_DriverInputProc * (*tcl_ChannelInputProc) (const Tcl_ChannelType *chanTypePtr); /* 403 */ jpayne@69: Tcl_DriverOutputProc * (*tcl_ChannelOutputProc) (const Tcl_ChannelType *chanTypePtr); /* 404 */ jpayne@69: Tcl_DriverSeekProc * (*tcl_ChannelSeekProc) (const Tcl_ChannelType *chanTypePtr); /* 405 */ jpayne@69: Tcl_DriverSetOptionProc * (*tcl_ChannelSetOptionProc) (const Tcl_ChannelType *chanTypePtr); /* 406 */ jpayne@69: Tcl_DriverGetOptionProc * (*tcl_ChannelGetOptionProc) (const Tcl_ChannelType *chanTypePtr); /* 407 */ jpayne@69: Tcl_DriverWatchProc * (*tcl_ChannelWatchProc) (const Tcl_ChannelType *chanTypePtr); /* 408 */ jpayne@69: Tcl_DriverGetHandleProc * (*tcl_ChannelGetHandleProc) (const Tcl_ChannelType *chanTypePtr); /* 409 */ jpayne@69: Tcl_DriverFlushProc * (*tcl_ChannelFlushProc) (const Tcl_ChannelType *chanTypePtr); /* 410 */ jpayne@69: Tcl_DriverHandlerProc * (*tcl_ChannelHandlerProc) (const Tcl_ChannelType *chanTypePtr); /* 411 */ jpayne@69: int (*tcl_JoinThread) (Tcl_ThreadId threadId, int *result); /* 412 */ jpayne@69: int (*tcl_IsChannelShared) (Tcl_Channel channel); /* 413 */ jpayne@69: int (*tcl_IsChannelRegistered) (Tcl_Interp *interp, Tcl_Channel channel); /* 414 */ jpayne@69: void (*tcl_CutChannel) (Tcl_Channel channel); /* 415 */ jpayne@69: void (*tcl_SpliceChannel) (Tcl_Channel channel); /* 416 */ jpayne@69: void (*tcl_ClearChannelHandlers) (Tcl_Channel channel); /* 417 */ jpayne@69: int (*tcl_IsChannelExisting) (const char *channelName); /* 418 */ jpayne@69: int (*tcl_UniCharNcasecmp) (const Tcl_UniChar *ucs, const Tcl_UniChar *uct, unsigned long numChars); /* 419 */ jpayne@69: int (*tcl_UniCharCaseMatch) (const Tcl_UniChar *uniStr, const Tcl_UniChar *uniPattern, int nocase); /* 420 */ jpayne@69: Tcl_HashEntry * (*tcl_FindHashEntry) (Tcl_HashTable *tablePtr, const void *key); /* 421 */ jpayne@69: Tcl_HashEntry * (*tcl_CreateHashEntry) (Tcl_HashTable *tablePtr, const void *key, int *newPtr); /* 422 */ jpayne@69: void (*tcl_InitCustomHashTable) (Tcl_HashTable *tablePtr, int keyType, const Tcl_HashKeyType *typePtr); /* 423 */ jpayne@69: void (*tcl_InitObjHashTable) (Tcl_HashTable *tablePtr); /* 424 */ jpayne@69: ClientData (*tcl_CommandTraceInfo) (Tcl_Interp *interp, const char *varName, int flags, Tcl_CommandTraceProc *procPtr, ClientData prevClientData); /* 425 */ jpayne@69: int (*tcl_TraceCommand) (Tcl_Interp *interp, const char *varName, int flags, Tcl_CommandTraceProc *proc, ClientData clientData); /* 426 */ jpayne@69: void (*tcl_UntraceCommand) (Tcl_Interp *interp, const char *varName, int flags, Tcl_CommandTraceProc *proc, ClientData clientData); /* 427 */ jpayne@69: char * (*tcl_AttemptAlloc) (unsigned int size); /* 428 */ jpayne@69: char * (*tcl_AttemptDbCkalloc) (unsigned int size, const char *file, int line); /* 429 */ jpayne@69: char * (*tcl_AttemptRealloc) (char *ptr, unsigned int size); /* 430 */ jpayne@69: char * (*tcl_AttemptDbCkrealloc) (char *ptr, unsigned int size, const char *file, int line); /* 431 */ jpayne@69: int (*tcl_AttemptSetObjLength) (Tcl_Obj *objPtr, int length); /* 432 */ jpayne@69: Tcl_ThreadId (*tcl_GetChannelThread) (Tcl_Channel channel); /* 433 */ jpayne@69: Tcl_UniChar * (*tcl_GetUnicodeFromObj) (Tcl_Obj *objPtr, int *lengthPtr); /* 434 */ jpayne@69: int (*tcl_GetMathFuncInfo) (Tcl_Interp *interp, const char *name, int *numArgsPtr, Tcl_ValueType **argTypesPtr, Tcl_MathProc **procPtr, ClientData *clientDataPtr); /* 435 */ jpayne@69: Tcl_Obj * (*tcl_ListMathFuncs) (Tcl_Interp *interp, const char *pattern); /* 436 */ jpayne@69: Tcl_Obj * (*tcl_SubstObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, int flags); /* 437 */ jpayne@69: int (*tcl_DetachChannel) (Tcl_Interp *interp, Tcl_Channel channel); /* 438 */ jpayne@69: int (*tcl_IsStandardChannel) (Tcl_Channel channel); /* 439 */ jpayne@69: int (*tcl_FSCopyFile) (Tcl_Obj *srcPathPtr, Tcl_Obj *destPathPtr); /* 440 */ jpayne@69: int (*tcl_FSCopyDirectory) (Tcl_Obj *srcPathPtr, Tcl_Obj *destPathPtr, Tcl_Obj **errorPtr); /* 441 */ jpayne@69: int (*tcl_FSCreateDirectory) (Tcl_Obj *pathPtr); /* 442 */ jpayne@69: int (*tcl_FSDeleteFile) (Tcl_Obj *pathPtr); /* 443 */ jpayne@69: int (*tcl_FSLoadFile) (Tcl_Interp *interp, Tcl_Obj *pathPtr, const char *sym1, const char *sym2, Tcl_PackageInitProc **proc1Ptr, Tcl_PackageInitProc **proc2Ptr, Tcl_LoadHandle *handlePtr, Tcl_FSUnloadFileProc **unloadProcPtr); /* 444 */ jpayne@69: int (*tcl_FSMatchInDirectory) (Tcl_Interp *interp, Tcl_Obj *result, Tcl_Obj *pathPtr, const char *pattern, Tcl_GlobTypeData *types); /* 445 */ jpayne@69: Tcl_Obj * (*tcl_FSLink) (Tcl_Obj *pathPtr, Tcl_Obj *toPtr, int linkAction); /* 446 */ jpayne@69: int (*tcl_FSRemoveDirectory) (Tcl_Obj *pathPtr, int recursive, Tcl_Obj **errorPtr); /* 447 */ jpayne@69: int (*tcl_FSRenameFile) (Tcl_Obj *srcPathPtr, Tcl_Obj *destPathPtr); /* 448 */ jpayne@69: int (*tcl_FSLstat) (Tcl_Obj *pathPtr, Tcl_StatBuf *buf); /* 449 */ jpayne@69: int (*tcl_FSUtime) (Tcl_Obj *pathPtr, struct utimbuf *tval); /* 450 */ jpayne@69: int (*tcl_FSFileAttrsGet) (Tcl_Interp *interp, int index, Tcl_Obj *pathPtr, Tcl_Obj **objPtrRef); /* 451 */ jpayne@69: int (*tcl_FSFileAttrsSet) (Tcl_Interp *interp, int index, Tcl_Obj *pathPtr, Tcl_Obj *objPtr); /* 452 */ jpayne@69: const char *CONST86 * (*tcl_FSFileAttrStrings) (Tcl_Obj *pathPtr, Tcl_Obj **objPtrRef); /* 453 */ jpayne@69: int (*tcl_FSStat) (Tcl_Obj *pathPtr, Tcl_StatBuf *buf); /* 454 */ jpayne@69: int (*tcl_FSAccess) (Tcl_Obj *pathPtr, int mode); /* 455 */ jpayne@69: Tcl_Channel (*tcl_FSOpenFileChannel) (Tcl_Interp *interp, Tcl_Obj *pathPtr, const char *modeString, int permissions); /* 456 */ jpayne@69: Tcl_Obj * (*tcl_FSGetCwd) (Tcl_Interp *interp); /* 457 */ jpayne@69: int (*tcl_FSChdir) (Tcl_Obj *pathPtr); /* 458 */ jpayne@69: int (*tcl_FSConvertToPathType) (Tcl_Interp *interp, Tcl_Obj *pathPtr); /* 459 */ jpayne@69: Tcl_Obj * (*tcl_FSJoinPath) (Tcl_Obj *listObj, int elements); /* 460 */ jpayne@69: Tcl_Obj * (*tcl_FSSplitPath) (Tcl_Obj *pathPtr, int *lenPtr); /* 461 */ jpayne@69: int (*tcl_FSEqualPaths) (Tcl_Obj *firstPtr, Tcl_Obj *secondPtr); /* 462 */ jpayne@69: Tcl_Obj * (*tcl_FSGetNormalizedPath) (Tcl_Interp *interp, Tcl_Obj *pathPtr); /* 463 */ jpayne@69: Tcl_Obj * (*tcl_FSJoinToPath) (Tcl_Obj *pathPtr, int objc, Tcl_Obj *const objv[]); /* 464 */ jpayne@69: ClientData (*tcl_FSGetInternalRep) (Tcl_Obj *pathPtr, const Tcl_Filesystem *fsPtr); /* 465 */ jpayne@69: Tcl_Obj * (*tcl_FSGetTranslatedPath) (Tcl_Interp *interp, Tcl_Obj *pathPtr); /* 466 */ jpayne@69: int (*tcl_FSEvalFile) (Tcl_Interp *interp, Tcl_Obj *fileName); /* 467 */ jpayne@69: Tcl_Obj * (*tcl_FSNewNativePath) (const Tcl_Filesystem *fromFilesystem, ClientData clientData); /* 468 */ jpayne@69: const void * (*tcl_FSGetNativePath) (Tcl_Obj *pathPtr); /* 469 */ jpayne@69: Tcl_Obj * (*tcl_FSFileSystemInfo) (Tcl_Obj *pathPtr); /* 470 */ jpayne@69: Tcl_Obj * (*tcl_FSPathSeparator) (Tcl_Obj *pathPtr); /* 471 */ jpayne@69: Tcl_Obj * (*tcl_FSListVolumes) (void); /* 472 */ jpayne@69: int (*tcl_FSRegister) (ClientData clientData, const Tcl_Filesystem *fsPtr); /* 473 */ jpayne@69: int (*tcl_FSUnregister) (const Tcl_Filesystem *fsPtr); /* 474 */ jpayne@69: ClientData (*tcl_FSData) (const Tcl_Filesystem *fsPtr); /* 475 */ jpayne@69: const char * (*tcl_FSGetTranslatedStringPath) (Tcl_Interp *interp, Tcl_Obj *pathPtr); /* 476 */ jpayne@69: CONST86 Tcl_Filesystem * (*tcl_FSGetFileSystemForPath) (Tcl_Obj *pathPtr); /* 477 */ jpayne@69: Tcl_PathType (*tcl_FSGetPathType) (Tcl_Obj *pathPtr); /* 478 */ jpayne@69: int (*tcl_OutputBuffered) (Tcl_Channel chan); /* 479 */ jpayne@69: void (*tcl_FSMountsChanged) (const Tcl_Filesystem *fsPtr); /* 480 */ jpayne@69: int (*tcl_EvalTokensStandard) (Tcl_Interp *interp, Tcl_Token *tokenPtr, int count); /* 481 */ jpayne@69: void (*tcl_GetTime) (Tcl_Time *timeBuf); /* 482 */ jpayne@69: Tcl_Trace (*tcl_CreateObjTrace) (Tcl_Interp *interp, int level, int flags, Tcl_CmdObjTraceProc *objProc, ClientData clientData, Tcl_CmdObjTraceDeleteProc *delProc); /* 483 */ jpayne@69: int (*tcl_GetCommandInfoFromToken) (Tcl_Command token, Tcl_CmdInfo *infoPtr); /* 484 */ jpayne@69: int (*tcl_SetCommandInfoFromToken) (Tcl_Command token, const Tcl_CmdInfo *infoPtr); /* 485 */ jpayne@69: Tcl_Obj * (*tcl_DbNewWideIntObj) (Tcl_WideInt wideValue, const char *file, int line); /* 486 */ jpayne@69: int (*tcl_GetWideIntFromObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, Tcl_WideInt *widePtr); /* 487 */ jpayne@69: Tcl_Obj * (*tcl_NewWideIntObj) (Tcl_WideInt wideValue); /* 488 */ jpayne@69: void (*tcl_SetWideIntObj) (Tcl_Obj *objPtr, Tcl_WideInt wideValue); /* 489 */ jpayne@69: Tcl_StatBuf * (*tcl_AllocStatBuf) (void); /* 490 */ jpayne@69: Tcl_WideInt (*tcl_Seek) (Tcl_Channel chan, Tcl_WideInt offset, int mode); /* 491 */ jpayne@69: Tcl_WideInt (*tcl_Tell) (Tcl_Channel chan); /* 492 */ jpayne@69: Tcl_DriverWideSeekProc * (*tcl_ChannelWideSeekProc) (const Tcl_ChannelType *chanTypePtr); /* 493 */ jpayne@69: int (*tcl_DictObjPut) (Tcl_Interp *interp, Tcl_Obj *dictPtr, Tcl_Obj *keyPtr, Tcl_Obj *valuePtr); /* 494 */ jpayne@69: int (*tcl_DictObjGet) (Tcl_Interp *interp, Tcl_Obj *dictPtr, Tcl_Obj *keyPtr, Tcl_Obj **valuePtrPtr); /* 495 */ jpayne@69: int (*tcl_DictObjRemove) (Tcl_Interp *interp, Tcl_Obj *dictPtr, Tcl_Obj *keyPtr); /* 496 */ jpayne@69: int (*tcl_DictObjSize) (Tcl_Interp *interp, Tcl_Obj *dictPtr, int *sizePtr); /* 497 */ jpayne@69: int (*tcl_DictObjFirst) (Tcl_Interp *interp, Tcl_Obj *dictPtr, Tcl_DictSearch *searchPtr, Tcl_Obj **keyPtrPtr, Tcl_Obj **valuePtrPtr, int *donePtr); /* 498 */ jpayne@69: void (*tcl_DictObjNext) (Tcl_DictSearch *searchPtr, Tcl_Obj **keyPtrPtr, Tcl_Obj **valuePtrPtr, int *donePtr); /* 499 */ jpayne@69: void (*tcl_DictObjDone) (Tcl_DictSearch *searchPtr); /* 500 */ jpayne@69: int (*tcl_DictObjPutKeyList) (Tcl_Interp *interp, Tcl_Obj *dictPtr, int keyc, Tcl_Obj *const *keyv, Tcl_Obj *valuePtr); /* 501 */ jpayne@69: int (*tcl_DictObjRemoveKeyList) (Tcl_Interp *interp, Tcl_Obj *dictPtr, int keyc, Tcl_Obj *const *keyv); /* 502 */ jpayne@69: Tcl_Obj * (*tcl_NewDictObj) (void); /* 503 */ jpayne@69: Tcl_Obj * (*tcl_DbNewDictObj) (const char *file, int line); /* 504 */ jpayne@69: void (*tcl_RegisterConfig) (Tcl_Interp *interp, const char *pkgName, const Tcl_Config *configuration, const char *valEncoding); /* 505 */ jpayne@69: Tcl_Namespace * (*tcl_CreateNamespace) (Tcl_Interp *interp, const char *name, ClientData clientData, Tcl_NamespaceDeleteProc *deleteProc); /* 506 */ jpayne@69: void (*tcl_DeleteNamespace) (Tcl_Namespace *nsPtr); /* 507 */ jpayne@69: int (*tcl_AppendExportList) (Tcl_Interp *interp, Tcl_Namespace *nsPtr, Tcl_Obj *objPtr); /* 508 */ jpayne@69: int (*tcl_Export) (Tcl_Interp *interp, Tcl_Namespace *nsPtr, const char *pattern, int resetListFirst); /* 509 */ jpayne@69: int (*tcl_Import) (Tcl_Interp *interp, Tcl_Namespace *nsPtr, const char *pattern, int allowOverwrite); /* 510 */ jpayne@69: int (*tcl_ForgetImport) (Tcl_Interp *interp, Tcl_Namespace *nsPtr, const char *pattern); /* 511 */ jpayne@69: Tcl_Namespace * (*tcl_GetCurrentNamespace) (Tcl_Interp *interp); /* 512 */ jpayne@69: Tcl_Namespace * (*tcl_GetGlobalNamespace) (Tcl_Interp *interp); /* 513 */ jpayne@69: Tcl_Namespace * (*tcl_FindNamespace) (Tcl_Interp *interp, const char *name, Tcl_Namespace *contextNsPtr, int flags); /* 514 */ jpayne@69: Tcl_Command (*tcl_FindCommand) (Tcl_Interp *interp, const char *name, Tcl_Namespace *contextNsPtr, int flags); /* 515 */ jpayne@69: Tcl_Command (*tcl_GetCommandFromObj) (Tcl_Interp *interp, Tcl_Obj *objPtr); /* 516 */ jpayne@69: void (*tcl_GetCommandFullName) (Tcl_Interp *interp, Tcl_Command command, Tcl_Obj *objPtr); /* 517 */ jpayne@69: int (*tcl_FSEvalFileEx) (Tcl_Interp *interp, Tcl_Obj *fileName, const char *encodingName); /* 518 */ jpayne@69: Tcl_ExitProc * (*tcl_SetExitProc) (TCL_NORETURN1 Tcl_ExitProc *proc); /* 519 */ jpayne@69: void (*tcl_LimitAddHandler) (Tcl_Interp *interp, int type, Tcl_LimitHandlerProc *handlerProc, ClientData clientData, Tcl_LimitHandlerDeleteProc *deleteProc); /* 520 */ jpayne@69: void (*tcl_LimitRemoveHandler) (Tcl_Interp *interp, int type, Tcl_LimitHandlerProc *handlerProc, ClientData clientData); /* 521 */ jpayne@69: int (*tcl_LimitReady) (Tcl_Interp *interp); /* 522 */ jpayne@69: int (*tcl_LimitCheck) (Tcl_Interp *interp); /* 523 */ jpayne@69: int (*tcl_LimitExceeded) (Tcl_Interp *interp); /* 524 */ jpayne@69: void (*tcl_LimitSetCommands) (Tcl_Interp *interp, int commandLimit); /* 525 */ jpayne@69: void (*tcl_LimitSetTime) (Tcl_Interp *interp, Tcl_Time *timeLimitPtr); /* 526 */ jpayne@69: void (*tcl_LimitSetGranularity) (Tcl_Interp *interp, int type, int granularity); /* 527 */ jpayne@69: int (*tcl_LimitTypeEnabled) (Tcl_Interp *interp, int type); /* 528 */ jpayne@69: int (*tcl_LimitTypeExceeded) (Tcl_Interp *interp, int type); /* 529 */ jpayne@69: void (*tcl_LimitTypeSet) (Tcl_Interp *interp, int type); /* 530 */ jpayne@69: void (*tcl_LimitTypeReset) (Tcl_Interp *interp, int type); /* 531 */ jpayne@69: int (*tcl_LimitGetCommands) (Tcl_Interp *interp); /* 532 */ jpayne@69: void (*tcl_LimitGetTime) (Tcl_Interp *interp, Tcl_Time *timeLimitPtr); /* 533 */ jpayne@69: int (*tcl_LimitGetGranularity) (Tcl_Interp *interp, int type); /* 534 */ jpayne@69: Tcl_InterpState (*tcl_SaveInterpState) (Tcl_Interp *interp, int status); /* 535 */ jpayne@69: int (*tcl_RestoreInterpState) (Tcl_Interp *interp, Tcl_InterpState state); /* 536 */ jpayne@69: void (*tcl_DiscardInterpState) (Tcl_InterpState state); /* 537 */ jpayne@69: int (*tcl_SetReturnOptions) (Tcl_Interp *interp, Tcl_Obj *options); /* 538 */ jpayne@69: Tcl_Obj * (*tcl_GetReturnOptions) (Tcl_Interp *interp, int result); /* 539 */ jpayne@69: int (*tcl_IsEnsemble) (Tcl_Command token); /* 540 */ jpayne@69: Tcl_Command (*tcl_CreateEnsemble) (Tcl_Interp *interp, const char *name, Tcl_Namespace *namespacePtr, int flags); /* 541 */ jpayne@69: Tcl_Command (*tcl_FindEnsemble) (Tcl_Interp *interp, Tcl_Obj *cmdNameObj, int flags); /* 542 */ jpayne@69: int (*tcl_SetEnsembleSubcommandList) (Tcl_Interp *interp, Tcl_Command token, Tcl_Obj *subcmdList); /* 543 */ jpayne@69: int (*tcl_SetEnsembleMappingDict) (Tcl_Interp *interp, Tcl_Command token, Tcl_Obj *mapDict); /* 544 */ jpayne@69: int (*tcl_SetEnsembleUnknownHandler) (Tcl_Interp *interp, Tcl_Command token, Tcl_Obj *unknownList); /* 545 */ jpayne@69: int (*tcl_SetEnsembleFlags) (Tcl_Interp *interp, Tcl_Command token, int flags); /* 546 */ jpayne@69: int (*tcl_GetEnsembleSubcommandList) (Tcl_Interp *interp, Tcl_Command token, Tcl_Obj **subcmdListPtr); /* 547 */ jpayne@69: int (*tcl_GetEnsembleMappingDict) (Tcl_Interp *interp, Tcl_Command token, Tcl_Obj **mapDictPtr); /* 548 */ jpayne@69: int (*tcl_GetEnsembleUnknownHandler) (Tcl_Interp *interp, Tcl_Command token, Tcl_Obj **unknownListPtr); /* 549 */ jpayne@69: int (*tcl_GetEnsembleFlags) (Tcl_Interp *interp, Tcl_Command token, int *flagsPtr); /* 550 */ jpayne@69: int (*tcl_GetEnsembleNamespace) (Tcl_Interp *interp, Tcl_Command token, Tcl_Namespace **namespacePtrPtr); /* 551 */ jpayne@69: void (*tcl_SetTimeProc) (Tcl_GetTimeProc *getProc, Tcl_ScaleTimeProc *scaleProc, ClientData clientData); /* 552 */ jpayne@69: void (*tcl_QueryTimeProc) (Tcl_GetTimeProc **getProc, Tcl_ScaleTimeProc **scaleProc, ClientData *clientData); /* 553 */ jpayne@69: Tcl_DriverThreadActionProc * (*tcl_ChannelThreadActionProc) (const Tcl_ChannelType *chanTypePtr); /* 554 */ jpayne@69: Tcl_Obj * (*tcl_NewBignumObj) (mp_int *value); /* 555 */ jpayne@69: Tcl_Obj * (*tcl_DbNewBignumObj) (mp_int *value, const char *file, int line); /* 556 */ jpayne@69: void (*tcl_SetBignumObj) (Tcl_Obj *obj, mp_int *value); /* 557 */ jpayne@69: int (*tcl_GetBignumFromObj) (Tcl_Interp *interp, Tcl_Obj *obj, mp_int *value); /* 558 */ jpayne@69: int (*tcl_TakeBignumFromObj) (Tcl_Interp *interp, Tcl_Obj *obj, mp_int *value); /* 559 */ jpayne@69: int (*tcl_TruncateChannel) (Tcl_Channel chan, Tcl_WideInt length); /* 560 */ jpayne@69: Tcl_DriverTruncateProc * (*tcl_ChannelTruncateProc) (const Tcl_ChannelType *chanTypePtr); /* 561 */ jpayne@69: void (*tcl_SetChannelErrorInterp) (Tcl_Interp *interp, Tcl_Obj *msg); /* 562 */ jpayne@69: void (*tcl_GetChannelErrorInterp) (Tcl_Interp *interp, Tcl_Obj **msg); /* 563 */ jpayne@69: void (*tcl_SetChannelError) (Tcl_Channel chan, Tcl_Obj *msg); /* 564 */ jpayne@69: void (*tcl_GetChannelError) (Tcl_Channel chan, Tcl_Obj **msg); /* 565 */ jpayne@69: int (*tcl_InitBignumFromDouble) (Tcl_Interp *interp, double initval, mp_int *toInit); /* 566 */ jpayne@69: Tcl_Obj * (*tcl_GetNamespaceUnknownHandler) (Tcl_Interp *interp, Tcl_Namespace *nsPtr); /* 567 */ jpayne@69: int (*tcl_SetNamespaceUnknownHandler) (Tcl_Interp *interp, Tcl_Namespace *nsPtr, Tcl_Obj *handlerPtr); /* 568 */ jpayne@69: int (*tcl_GetEncodingFromObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, Tcl_Encoding *encodingPtr); /* 569 */ jpayne@69: Tcl_Obj * (*tcl_GetEncodingSearchPath) (void); /* 570 */ jpayne@69: int (*tcl_SetEncodingSearchPath) (Tcl_Obj *searchPath); /* 571 */ jpayne@69: const char * (*tcl_GetEncodingNameFromEnvironment) (Tcl_DString *bufPtr); /* 572 */ jpayne@69: int (*tcl_PkgRequireProc) (Tcl_Interp *interp, const char *name, int objc, Tcl_Obj *const objv[], void *clientDataPtr); /* 573 */ jpayne@69: void (*tcl_AppendObjToErrorInfo) (Tcl_Interp *interp, Tcl_Obj *objPtr); /* 574 */ jpayne@69: void (*tcl_AppendLimitedToObj) (Tcl_Obj *objPtr, const char *bytes, int length, int limit, const char *ellipsis); /* 575 */ jpayne@69: Tcl_Obj * (*tcl_Format) (Tcl_Interp *interp, const char *format, int objc, Tcl_Obj *const objv[]); /* 576 */ jpayne@69: int (*tcl_AppendFormatToObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, const char *format, int objc, Tcl_Obj *const objv[]); /* 577 */ jpayne@69: Tcl_Obj * (*tcl_ObjPrintf) (const char *format, ...) TCL_FORMAT_PRINTF(1, 2); /* 578 */ jpayne@69: void (*tcl_AppendPrintfToObj) (Tcl_Obj *objPtr, const char *format, ...) TCL_FORMAT_PRINTF(2, 3); /* 579 */ jpayne@69: int (*tcl_CancelEval) (Tcl_Interp *interp, Tcl_Obj *resultObjPtr, ClientData clientData, int flags); /* 580 */ jpayne@69: int (*tcl_Canceled) (Tcl_Interp *interp, int flags); /* 581 */ jpayne@69: int (*tcl_CreatePipe) (Tcl_Interp *interp, Tcl_Channel *rchan, Tcl_Channel *wchan, int flags); /* 582 */ jpayne@69: Tcl_Command (*tcl_NRCreateCommand) (Tcl_Interp *interp, const char *cmdName, Tcl_ObjCmdProc *proc, Tcl_ObjCmdProc *nreProc, ClientData clientData, Tcl_CmdDeleteProc *deleteProc); /* 583 */ jpayne@69: int (*tcl_NREvalObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, int flags); /* 584 */ jpayne@69: int (*tcl_NREvalObjv) (Tcl_Interp *interp, int objc, Tcl_Obj *const objv[], int flags); /* 585 */ jpayne@69: int (*tcl_NRCmdSwap) (Tcl_Interp *interp, Tcl_Command cmd, int objc, Tcl_Obj *const objv[], int flags); /* 586 */ jpayne@69: void (*tcl_NRAddCallback) (Tcl_Interp *interp, Tcl_NRPostProc *postProcPtr, ClientData data0, ClientData data1, ClientData data2, ClientData data3); /* 587 */ jpayne@69: int (*tcl_NRCallObjProc) (Tcl_Interp *interp, Tcl_ObjCmdProc *objProc, ClientData clientData, int objc, Tcl_Obj *const objv[]); /* 588 */ jpayne@69: unsigned (*tcl_GetFSDeviceFromStat) (const Tcl_StatBuf *statPtr); /* 589 */ jpayne@69: unsigned (*tcl_GetFSInodeFromStat) (const Tcl_StatBuf *statPtr); /* 590 */ jpayne@69: unsigned (*tcl_GetModeFromStat) (const Tcl_StatBuf *statPtr); /* 591 */ jpayne@69: int (*tcl_GetLinkCountFromStat) (const Tcl_StatBuf *statPtr); /* 592 */ jpayne@69: int (*tcl_GetUserIdFromStat) (const Tcl_StatBuf *statPtr); /* 593 */ jpayne@69: int (*tcl_GetGroupIdFromStat) (const Tcl_StatBuf *statPtr); /* 594 */ jpayne@69: int (*tcl_GetDeviceTypeFromStat) (const Tcl_StatBuf *statPtr); /* 595 */ jpayne@69: Tcl_WideInt (*tcl_GetAccessTimeFromStat) (const Tcl_StatBuf *statPtr); /* 596 */ jpayne@69: Tcl_WideInt (*tcl_GetModificationTimeFromStat) (const Tcl_StatBuf *statPtr); /* 597 */ jpayne@69: Tcl_WideInt (*tcl_GetChangeTimeFromStat) (const Tcl_StatBuf *statPtr); /* 598 */ jpayne@69: Tcl_WideUInt (*tcl_GetSizeFromStat) (const Tcl_StatBuf *statPtr); /* 599 */ jpayne@69: Tcl_WideUInt (*tcl_GetBlocksFromStat) (const Tcl_StatBuf *statPtr); /* 600 */ jpayne@69: unsigned (*tcl_GetBlockSizeFromStat) (const Tcl_StatBuf *statPtr); /* 601 */ jpayne@69: int (*tcl_SetEnsembleParameterList) (Tcl_Interp *interp, Tcl_Command token, Tcl_Obj *paramList); /* 602 */ jpayne@69: int (*tcl_GetEnsembleParameterList) (Tcl_Interp *interp, Tcl_Command token, Tcl_Obj **paramListPtr); /* 603 */ jpayne@69: int (*tcl_ParseArgsObjv) (Tcl_Interp *interp, const Tcl_ArgvInfo *argTable, int *objcPtr, Tcl_Obj *const *objv, Tcl_Obj ***remObjv); /* 604 */ jpayne@69: int (*tcl_GetErrorLine) (Tcl_Interp *interp); /* 605 */ jpayne@69: void (*tcl_SetErrorLine) (Tcl_Interp *interp, int lineNum); /* 606 */ jpayne@69: void (*tcl_TransferResult) (Tcl_Interp *sourceInterp, int code, Tcl_Interp *targetInterp); /* 607 */ jpayne@69: int (*tcl_InterpActive) (Tcl_Interp *interp); /* 608 */ jpayne@69: void (*tcl_BackgroundException) (Tcl_Interp *interp, int code); /* 609 */ jpayne@69: int (*tcl_ZlibDeflate) (Tcl_Interp *interp, int format, Tcl_Obj *data, int level, Tcl_Obj *gzipHeaderDictObj); /* 610 */ jpayne@69: int (*tcl_ZlibInflate) (Tcl_Interp *interp, int format, Tcl_Obj *data, int buffersize, Tcl_Obj *gzipHeaderDictObj); /* 611 */ jpayne@69: unsigned int (*tcl_ZlibCRC32) (unsigned int crc, const unsigned char *buf, int len); /* 612 */ jpayne@69: unsigned int (*tcl_ZlibAdler32) (unsigned int adler, const unsigned char *buf, int len); /* 613 */ jpayne@69: int (*tcl_ZlibStreamInit) (Tcl_Interp *interp, int mode, int format, int level, Tcl_Obj *dictObj, Tcl_ZlibStream *zshandle); /* 614 */ jpayne@69: Tcl_Obj * (*tcl_ZlibStreamGetCommandName) (Tcl_ZlibStream zshandle); /* 615 */ jpayne@69: int (*tcl_ZlibStreamEof) (Tcl_ZlibStream zshandle); /* 616 */ jpayne@69: int (*tcl_ZlibStreamChecksum) (Tcl_ZlibStream zshandle); /* 617 */ jpayne@69: int (*tcl_ZlibStreamPut) (Tcl_ZlibStream zshandle, Tcl_Obj *data, int flush); /* 618 */ jpayne@69: int (*tcl_ZlibStreamGet) (Tcl_ZlibStream zshandle, Tcl_Obj *data, int count); /* 619 */ jpayne@69: int (*tcl_ZlibStreamClose) (Tcl_ZlibStream zshandle); /* 620 */ jpayne@69: int (*tcl_ZlibStreamReset) (Tcl_ZlibStream zshandle); /* 621 */ jpayne@69: void (*tcl_SetStartupScript) (Tcl_Obj *path, const char *encoding); /* 622 */ jpayne@69: Tcl_Obj * (*tcl_GetStartupScript) (const char **encodingPtr); /* 623 */ jpayne@69: int (*tcl_CloseEx) (Tcl_Interp *interp, Tcl_Channel chan, int flags); /* 624 */ jpayne@69: int (*tcl_NRExprObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, Tcl_Obj *resultPtr); /* 625 */ jpayne@69: int (*tcl_NRSubstObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, int flags); /* 626 */ jpayne@69: int (*tcl_LoadFile) (Tcl_Interp *interp, Tcl_Obj *pathPtr, const char *const symv[], int flags, void *procPtrs, Tcl_LoadHandle *handlePtr); /* 627 */ jpayne@69: void * (*tcl_FindSymbol) (Tcl_Interp *interp, Tcl_LoadHandle handle, const char *symbol); /* 628 */ jpayne@69: int (*tcl_FSUnloadFile) (Tcl_Interp *interp, Tcl_LoadHandle handlePtr); /* 629 */ jpayne@69: void (*tcl_ZlibStreamSetCompressionDictionary) (Tcl_ZlibStream zhandle, Tcl_Obj *compressionDictionaryObj); /* 630 */ jpayne@69: void (*reserved631)(void); jpayne@69: void (*reserved632)(void); jpayne@69: void (*reserved633)(void); jpayne@69: void (*reserved634)(void); jpayne@69: void (*reserved635)(void); jpayne@69: void (*reserved636)(void); jpayne@69: void (*reserved637)(void); jpayne@69: void (*reserved638)(void); jpayne@69: void (*reserved639)(void); jpayne@69: void (*reserved640)(void); jpayne@69: void (*reserved641)(void); jpayne@69: void (*reserved642)(void); jpayne@69: void (*reserved643)(void); jpayne@69: void (*reserved644)(void); jpayne@69: void (*reserved645)(void); jpayne@69: void (*reserved646)(void); jpayne@69: void (*reserved647)(void); jpayne@69: void (*reserved648)(void); jpayne@69: void (*reserved649)(void); jpayne@69: void (*reserved650)(void); jpayne@69: void (*reserved651)(void); jpayne@69: void (*reserved652)(void); jpayne@69: void (*reserved653)(void); jpayne@69: void (*reserved654)(void); jpayne@69: void (*reserved655)(void); jpayne@69: void (*reserved656)(void); jpayne@69: void (*reserved657)(void); jpayne@69: void (*reserved658)(void); jpayne@69: void (*reserved659)(void); jpayne@69: void (*reserved660)(void); jpayne@69: void (*reserved661)(void); jpayne@69: void (*reserved662)(void); jpayne@69: void (*reserved663)(void); jpayne@69: void (*reserved664)(void); jpayne@69: void (*reserved665)(void); jpayne@69: void (*reserved666)(void); jpayne@69: void (*reserved667)(void); jpayne@69: void (*reserved668)(void); jpayne@69: void (*reserved669)(void); jpayne@69: void (*reserved670)(void); jpayne@69: void (*reserved671)(void); jpayne@69: void (*reserved672)(void); jpayne@69: void (*reserved673)(void); jpayne@69: void (*reserved674)(void); jpayne@69: void (*reserved675)(void); jpayne@69: void (*reserved676)(void); jpayne@69: void (*reserved677)(void); jpayne@69: void (*reserved678)(void); jpayne@69: void (*reserved679)(void); jpayne@69: void (*reserved680)(void); jpayne@69: void (*reserved681)(void); jpayne@69: void (*reserved682)(void); jpayne@69: void (*tclUnusedStubEntry) (void); /* 683 */ jpayne@69: } TclStubs; jpayne@69: jpayne@69: extern const TclStubs *tclStubsPtr; jpayne@69: jpayne@69: #ifdef __cplusplus jpayne@69: } jpayne@69: #endif jpayne@69: jpayne@69: #if defined(USE_TCL_STUBS) jpayne@69: jpayne@69: /* jpayne@69: * Inline function declarations: jpayne@69: */ jpayne@69: jpayne@69: #define Tcl_PkgProvideEx \ jpayne@69: (tclStubsPtr->tcl_PkgProvideEx) /* 0 */ jpayne@69: #define Tcl_PkgRequireEx \ jpayne@69: (tclStubsPtr->tcl_PkgRequireEx) /* 1 */ jpayne@69: #define Tcl_Panic \ jpayne@69: (tclStubsPtr->tcl_Panic) /* 2 */ jpayne@69: #define Tcl_Alloc \ jpayne@69: (tclStubsPtr->tcl_Alloc) /* 3 */ jpayne@69: #define Tcl_Free \ jpayne@69: (tclStubsPtr->tcl_Free) /* 4 */ jpayne@69: #define Tcl_Realloc \ jpayne@69: (tclStubsPtr->tcl_Realloc) /* 5 */ jpayne@69: #define Tcl_DbCkalloc \ jpayne@69: (tclStubsPtr->tcl_DbCkalloc) /* 6 */ jpayne@69: #define Tcl_DbCkfree \ jpayne@69: (tclStubsPtr->tcl_DbCkfree) /* 7 */ jpayne@69: #define Tcl_DbCkrealloc \ jpayne@69: (tclStubsPtr->tcl_DbCkrealloc) /* 8 */ jpayne@69: #if !defined(_WIN32) && !defined(MAC_OSX_TCL) /* UNIX */ jpayne@69: #define Tcl_CreateFileHandler \ jpayne@69: (tclStubsPtr->tcl_CreateFileHandler) /* 9 */ jpayne@69: #endif /* UNIX */ jpayne@69: #ifdef MAC_OSX_TCL /* MACOSX */ jpayne@69: #define Tcl_CreateFileHandler \ jpayne@69: (tclStubsPtr->tcl_CreateFileHandler) /* 9 */ jpayne@69: #endif /* MACOSX */ jpayne@69: #if !defined(_WIN32) && !defined(MAC_OSX_TCL) /* UNIX */ jpayne@69: #define Tcl_DeleteFileHandler \ jpayne@69: (tclStubsPtr->tcl_DeleteFileHandler) /* 10 */ jpayne@69: #endif /* UNIX */ jpayne@69: #ifdef MAC_OSX_TCL /* MACOSX */ jpayne@69: #define Tcl_DeleteFileHandler \ jpayne@69: (tclStubsPtr->tcl_DeleteFileHandler) /* 10 */ jpayne@69: #endif /* MACOSX */ jpayne@69: #define Tcl_SetTimer \ jpayne@69: (tclStubsPtr->tcl_SetTimer) /* 11 */ jpayne@69: #define Tcl_Sleep \ jpayne@69: (tclStubsPtr->tcl_Sleep) /* 12 */ jpayne@69: #define Tcl_WaitForEvent \ jpayne@69: (tclStubsPtr->tcl_WaitForEvent) /* 13 */ jpayne@69: #define Tcl_AppendAllObjTypes \ jpayne@69: (tclStubsPtr->tcl_AppendAllObjTypes) /* 14 */ jpayne@69: #define Tcl_AppendStringsToObj \ jpayne@69: (tclStubsPtr->tcl_AppendStringsToObj) /* 15 */ jpayne@69: #define Tcl_AppendToObj \ jpayne@69: (tclStubsPtr->tcl_AppendToObj) /* 16 */ jpayne@69: #define Tcl_ConcatObj \ jpayne@69: (tclStubsPtr->tcl_ConcatObj) /* 17 */ jpayne@69: #define Tcl_ConvertToType \ jpayne@69: (tclStubsPtr->tcl_ConvertToType) /* 18 */ jpayne@69: #define Tcl_DbDecrRefCount \ jpayne@69: (tclStubsPtr->tcl_DbDecrRefCount) /* 19 */ jpayne@69: #define Tcl_DbIncrRefCount \ jpayne@69: (tclStubsPtr->tcl_DbIncrRefCount) /* 20 */ jpayne@69: #define Tcl_DbIsShared \ jpayne@69: (tclStubsPtr->tcl_DbIsShared) /* 21 */ jpayne@69: #define Tcl_DbNewBooleanObj \ jpayne@69: (tclStubsPtr->tcl_DbNewBooleanObj) /* 22 */ jpayne@69: #define Tcl_DbNewByteArrayObj \ jpayne@69: (tclStubsPtr->tcl_DbNewByteArrayObj) /* 23 */ jpayne@69: #define Tcl_DbNewDoubleObj \ jpayne@69: (tclStubsPtr->tcl_DbNewDoubleObj) /* 24 */ jpayne@69: #define Tcl_DbNewListObj \ jpayne@69: (tclStubsPtr->tcl_DbNewListObj) /* 25 */ jpayne@69: #define Tcl_DbNewLongObj \ jpayne@69: (tclStubsPtr->tcl_DbNewLongObj) /* 26 */ jpayne@69: #define Tcl_DbNewObj \ jpayne@69: (tclStubsPtr->tcl_DbNewObj) /* 27 */ jpayne@69: #define Tcl_DbNewStringObj \ jpayne@69: (tclStubsPtr->tcl_DbNewStringObj) /* 28 */ jpayne@69: #define Tcl_DuplicateObj \ jpayne@69: (tclStubsPtr->tcl_DuplicateObj) /* 29 */ jpayne@69: #define TclFreeObj \ jpayne@69: (tclStubsPtr->tclFreeObj) /* 30 */ jpayne@69: #define Tcl_GetBoolean \ jpayne@69: (tclStubsPtr->tcl_GetBoolean) /* 31 */ jpayne@69: #define Tcl_GetBooleanFromObj \ jpayne@69: (tclStubsPtr->tcl_GetBooleanFromObj) /* 32 */ jpayne@69: #define Tcl_GetByteArrayFromObj \ jpayne@69: (tclStubsPtr->tcl_GetByteArrayFromObj) /* 33 */ jpayne@69: #define Tcl_GetDouble \ jpayne@69: (tclStubsPtr->tcl_GetDouble) /* 34 */ jpayne@69: #define Tcl_GetDoubleFromObj \ jpayne@69: (tclStubsPtr->tcl_GetDoubleFromObj) /* 35 */ jpayne@69: #define Tcl_GetIndexFromObj \ jpayne@69: (tclStubsPtr->tcl_GetIndexFromObj) /* 36 */ jpayne@69: #define Tcl_GetInt \ jpayne@69: (tclStubsPtr->tcl_GetInt) /* 37 */ jpayne@69: #define Tcl_GetIntFromObj \ jpayne@69: (tclStubsPtr->tcl_GetIntFromObj) /* 38 */ jpayne@69: #define Tcl_GetLongFromObj \ jpayne@69: (tclStubsPtr->tcl_GetLongFromObj) /* 39 */ jpayne@69: #define Tcl_GetObjType \ jpayne@69: (tclStubsPtr->tcl_GetObjType) /* 40 */ jpayne@69: #define Tcl_GetStringFromObj \ jpayne@69: (tclStubsPtr->tcl_GetStringFromObj) /* 41 */ jpayne@69: #define Tcl_InvalidateStringRep \ jpayne@69: (tclStubsPtr->tcl_InvalidateStringRep) /* 42 */ jpayne@69: #define Tcl_ListObjAppendList \ jpayne@69: (tclStubsPtr->tcl_ListObjAppendList) /* 43 */ jpayne@69: #define Tcl_ListObjAppendElement \ jpayne@69: (tclStubsPtr->tcl_ListObjAppendElement) /* 44 */ jpayne@69: #define Tcl_ListObjGetElements \ jpayne@69: (tclStubsPtr->tcl_ListObjGetElements) /* 45 */ jpayne@69: #define Tcl_ListObjIndex \ jpayne@69: (tclStubsPtr->tcl_ListObjIndex) /* 46 */ jpayne@69: #define Tcl_ListObjLength \ jpayne@69: (tclStubsPtr->tcl_ListObjLength) /* 47 */ jpayne@69: #define Tcl_ListObjReplace \ jpayne@69: (tclStubsPtr->tcl_ListObjReplace) /* 48 */ jpayne@69: #define Tcl_NewBooleanObj \ jpayne@69: (tclStubsPtr->tcl_NewBooleanObj) /* 49 */ jpayne@69: #define Tcl_NewByteArrayObj \ jpayne@69: (tclStubsPtr->tcl_NewByteArrayObj) /* 50 */ jpayne@69: #define Tcl_NewDoubleObj \ jpayne@69: (tclStubsPtr->tcl_NewDoubleObj) /* 51 */ jpayne@69: #define Tcl_NewIntObj \ jpayne@69: (tclStubsPtr->tcl_NewIntObj) /* 52 */ jpayne@69: #define Tcl_NewListObj \ jpayne@69: (tclStubsPtr->tcl_NewListObj) /* 53 */ jpayne@69: #define Tcl_NewLongObj \ jpayne@69: (tclStubsPtr->tcl_NewLongObj) /* 54 */ jpayne@69: #define Tcl_NewObj \ jpayne@69: (tclStubsPtr->tcl_NewObj) /* 55 */ jpayne@69: #define Tcl_NewStringObj \ jpayne@69: (tclStubsPtr->tcl_NewStringObj) /* 56 */ jpayne@69: #define Tcl_SetBooleanObj \ jpayne@69: (tclStubsPtr->tcl_SetBooleanObj) /* 57 */ jpayne@69: #define Tcl_SetByteArrayLength \ jpayne@69: (tclStubsPtr->tcl_SetByteArrayLength) /* 58 */ jpayne@69: #define Tcl_SetByteArrayObj \ jpayne@69: (tclStubsPtr->tcl_SetByteArrayObj) /* 59 */ jpayne@69: #define Tcl_SetDoubleObj \ jpayne@69: (tclStubsPtr->tcl_SetDoubleObj) /* 60 */ jpayne@69: #define Tcl_SetIntObj \ jpayne@69: (tclStubsPtr->tcl_SetIntObj) /* 61 */ jpayne@69: #define Tcl_SetListObj \ jpayne@69: (tclStubsPtr->tcl_SetListObj) /* 62 */ jpayne@69: #define Tcl_SetLongObj \ jpayne@69: (tclStubsPtr->tcl_SetLongObj) /* 63 */ jpayne@69: #define Tcl_SetObjLength \ jpayne@69: (tclStubsPtr->tcl_SetObjLength) /* 64 */ jpayne@69: #define Tcl_SetStringObj \ jpayne@69: (tclStubsPtr->tcl_SetStringObj) /* 65 */ jpayne@69: #define Tcl_AddErrorInfo \ jpayne@69: (tclStubsPtr->tcl_AddErrorInfo) /* 66 */ jpayne@69: #define Tcl_AddObjErrorInfo \ jpayne@69: (tclStubsPtr->tcl_AddObjErrorInfo) /* 67 */ jpayne@69: #define Tcl_AllowExceptions \ jpayne@69: (tclStubsPtr->tcl_AllowExceptions) /* 68 */ jpayne@69: #define Tcl_AppendElement \ jpayne@69: (tclStubsPtr->tcl_AppendElement) /* 69 */ jpayne@69: #define Tcl_AppendResult \ jpayne@69: (tclStubsPtr->tcl_AppendResult) /* 70 */ jpayne@69: #define Tcl_AsyncCreate \ jpayne@69: (tclStubsPtr->tcl_AsyncCreate) /* 71 */ jpayne@69: #define Tcl_AsyncDelete \ jpayne@69: (tclStubsPtr->tcl_AsyncDelete) /* 72 */ jpayne@69: #define Tcl_AsyncInvoke \ jpayne@69: (tclStubsPtr->tcl_AsyncInvoke) /* 73 */ jpayne@69: #define Tcl_AsyncMark \ jpayne@69: (tclStubsPtr->tcl_AsyncMark) /* 74 */ jpayne@69: #define Tcl_AsyncReady \ jpayne@69: (tclStubsPtr->tcl_AsyncReady) /* 75 */ jpayne@69: #define Tcl_BackgroundError \ jpayne@69: (tclStubsPtr->tcl_BackgroundError) /* 76 */ jpayne@69: #define Tcl_Backslash \ jpayne@69: (tclStubsPtr->tcl_Backslash) /* 77 */ jpayne@69: #define Tcl_BadChannelOption \ jpayne@69: (tclStubsPtr->tcl_BadChannelOption) /* 78 */ jpayne@69: #define Tcl_CallWhenDeleted \ jpayne@69: (tclStubsPtr->tcl_CallWhenDeleted) /* 79 */ jpayne@69: #define Tcl_CancelIdleCall \ jpayne@69: (tclStubsPtr->tcl_CancelIdleCall) /* 80 */ jpayne@69: #define Tcl_Close \ jpayne@69: (tclStubsPtr->tcl_Close) /* 81 */ jpayne@69: #define Tcl_CommandComplete \ jpayne@69: (tclStubsPtr->tcl_CommandComplete) /* 82 */ jpayne@69: #define Tcl_Concat \ jpayne@69: (tclStubsPtr->tcl_Concat) /* 83 */ jpayne@69: #define Tcl_ConvertElement \ jpayne@69: (tclStubsPtr->tcl_ConvertElement) /* 84 */ jpayne@69: #define Tcl_ConvertCountedElement \ jpayne@69: (tclStubsPtr->tcl_ConvertCountedElement) /* 85 */ jpayne@69: #define Tcl_CreateAlias \ jpayne@69: (tclStubsPtr->tcl_CreateAlias) /* 86 */ jpayne@69: #define Tcl_CreateAliasObj \ jpayne@69: (tclStubsPtr->tcl_CreateAliasObj) /* 87 */ jpayne@69: #define Tcl_CreateChannel \ jpayne@69: (tclStubsPtr->tcl_CreateChannel) /* 88 */ jpayne@69: #define Tcl_CreateChannelHandler \ jpayne@69: (tclStubsPtr->tcl_CreateChannelHandler) /* 89 */ jpayne@69: #define Tcl_CreateCloseHandler \ jpayne@69: (tclStubsPtr->tcl_CreateCloseHandler) /* 90 */ jpayne@69: #define Tcl_CreateCommand \ jpayne@69: (tclStubsPtr->tcl_CreateCommand) /* 91 */ jpayne@69: #define Tcl_CreateEventSource \ jpayne@69: (tclStubsPtr->tcl_CreateEventSource) /* 92 */ jpayne@69: #define Tcl_CreateExitHandler \ jpayne@69: (tclStubsPtr->tcl_CreateExitHandler) /* 93 */ jpayne@69: #define Tcl_CreateInterp \ jpayne@69: (tclStubsPtr->tcl_CreateInterp) /* 94 */ jpayne@69: #define Tcl_CreateMathFunc \ jpayne@69: (tclStubsPtr->tcl_CreateMathFunc) /* 95 */ jpayne@69: #define Tcl_CreateObjCommand \ jpayne@69: (tclStubsPtr->tcl_CreateObjCommand) /* 96 */ jpayne@69: #define Tcl_CreateSlave \ jpayne@69: (tclStubsPtr->tcl_CreateSlave) /* 97 */ jpayne@69: #define Tcl_CreateTimerHandler \ jpayne@69: (tclStubsPtr->tcl_CreateTimerHandler) /* 98 */ jpayne@69: #define Tcl_CreateTrace \ jpayne@69: (tclStubsPtr->tcl_CreateTrace) /* 99 */ jpayne@69: #define Tcl_DeleteAssocData \ jpayne@69: (tclStubsPtr->tcl_DeleteAssocData) /* 100 */ jpayne@69: #define Tcl_DeleteChannelHandler \ jpayne@69: (tclStubsPtr->tcl_DeleteChannelHandler) /* 101 */ jpayne@69: #define Tcl_DeleteCloseHandler \ jpayne@69: (tclStubsPtr->tcl_DeleteCloseHandler) /* 102 */ jpayne@69: #define Tcl_DeleteCommand \ jpayne@69: (tclStubsPtr->tcl_DeleteCommand) /* 103 */ jpayne@69: #define Tcl_DeleteCommandFromToken \ jpayne@69: (tclStubsPtr->tcl_DeleteCommandFromToken) /* 104 */ jpayne@69: #define Tcl_DeleteEvents \ jpayne@69: (tclStubsPtr->tcl_DeleteEvents) /* 105 */ jpayne@69: #define Tcl_DeleteEventSource \ jpayne@69: (tclStubsPtr->tcl_DeleteEventSource) /* 106 */ jpayne@69: #define Tcl_DeleteExitHandler \ jpayne@69: (tclStubsPtr->tcl_DeleteExitHandler) /* 107 */ jpayne@69: #define Tcl_DeleteHashEntry \ jpayne@69: (tclStubsPtr->tcl_DeleteHashEntry) /* 108 */ jpayne@69: #define Tcl_DeleteHashTable \ jpayne@69: (tclStubsPtr->tcl_DeleteHashTable) /* 109 */ jpayne@69: #define Tcl_DeleteInterp \ jpayne@69: (tclStubsPtr->tcl_DeleteInterp) /* 110 */ jpayne@69: #define Tcl_DetachPids \ jpayne@69: (tclStubsPtr->tcl_DetachPids) /* 111 */ jpayne@69: #define Tcl_DeleteTimerHandler \ jpayne@69: (tclStubsPtr->tcl_DeleteTimerHandler) /* 112 */ jpayne@69: #define Tcl_DeleteTrace \ jpayne@69: (tclStubsPtr->tcl_DeleteTrace) /* 113 */ jpayne@69: #define Tcl_DontCallWhenDeleted \ jpayne@69: (tclStubsPtr->tcl_DontCallWhenDeleted) /* 114 */ jpayne@69: #define Tcl_DoOneEvent \ jpayne@69: (tclStubsPtr->tcl_DoOneEvent) /* 115 */ jpayne@69: #define Tcl_DoWhenIdle \ jpayne@69: (tclStubsPtr->tcl_DoWhenIdle) /* 116 */ jpayne@69: #define Tcl_DStringAppend \ jpayne@69: (tclStubsPtr->tcl_DStringAppend) /* 117 */ jpayne@69: #define Tcl_DStringAppendElement \ jpayne@69: (tclStubsPtr->tcl_DStringAppendElement) /* 118 */ jpayne@69: #define Tcl_DStringEndSublist \ jpayne@69: (tclStubsPtr->tcl_DStringEndSublist) /* 119 */ jpayne@69: #define Tcl_DStringFree \ jpayne@69: (tclStubsPtr->tcl_DStringFree) /* 120 */ jpayne@69: #define Tcl_DStringGetResult \ jpayne@69: (tclStubsPtr->tcl_DStringGetResult) /* 121 */ jpayne@69: #define Tcl_DStringInit \ jpayne@69: (tclStubsPtr->tcl_DStringInit) /* 122 */ jpayne@69: #define Tcl_DStringResult \ jpayne@69: (tclStubsPtr->tcl_DStringResult) /* 123 */ jpayne@69: #define Tcl_DStringSetLength \ jpayne@69: (tclStubsPtr->tcl_DStringSetLength) /* 124 */ jpayne@69: #define Tcl_DStringStartSublist \ jpayne@69: (tclStubsPtr->tcl_DStringStartSublist) /* 125 */ jpayne@69: #define Tcl_Eof \ jpayne@69: (tclStubsPtr->tcl_Eof) /* 126 */ jpayne@69: #define Tcl_ErrnoId \ jpayne@69: (tclStubsPtr->tcl_ErrnoId) /* 127 */ jpayne@69: #define Tcl_ErrnoMsg \ jpayne@69: (tclStubsPtr->tcl_ErrnoMsg) /* 128 */ jpayne@69: #define Tcl_Eval \ jpayne@69: (tclStubsPtr->tcl_Eval) /* 129 */ jpayne@69: #define Tcl_EvalFile \ jpayne@69: (tclStubsPtr->tcl_EvalFile) /* 130 */ jpayne@69: #define Tcl_EvalObj \ jpayne@69: (tclStubsPtr->tcl_EvalObj) /* 131 */ jpayne@69: #define Tcl_EventuallyFree \ jpayne@69: (tclStubsPtr->tcl_EventuallyFree) /* 132 */ jpayne@69: #define Tcl_Exit \ jpayne@69: (tclStubsPtr->tcl_Exit) /* 133 */ jpayne@69: #define Tcl_ExposeCommand \ jpayne@69: (tclStubsPtr->tcl_ExposeCommand) /* 134 */ jpayne@69: #define Tcl_ExprBoolean \ jpayne@69: (tclStubsPtr->tcl_ExprBoolean) /* 135 */ jpayne@69: #define Tcl_ExprBooleanObj \ jpayne@69: (tclStubsPtr->tcl_ExprBooleanObj) /* 136 */ jpayne@69: #define Tcl_ExprDouble \ jpayne@69: (tclStubsPtr->tcl_ExprDouble) /* 137 */ jpayne@69: #define Tcl_ExprDoubleObj \ jpayne@69: (tclStubsPtr->tcl_ExprDoubleObj) /* 138 */ jpayne@69: #define Tcl_ExprLong \ jpayne@69: (tclStubsPtr->tcl_ExprLong) /* 139 */ jpayne@69: #define Tcl_ExprLongObj \ jpayne@69: (tclStubsPtr->tcl_ExprLongObj) /* 140 */ jpayne@69: #define Tcl_ExprObj \ jpayne@69: (tclStubsPtr->tcl_ExprObj) /* 141 */ jpayne@69: #define Tcl_ExprString \ jpayne@69: (tclStubsPtr->tcl_ExprString) /* 142 */ jpayne@69: #define Tcl_Finalize \ jpayne@69: (tclStubsPtr->tcl_Finalize) /* 143 */ jpayne@69: #define Tcl_FindExecutable \ jpayne@69: (tclStubsPtr->tcl_FindExecutable) /* 144 */ jpayne@69: #define Tcl_FirstHashEntry \ jpayne@69: (tclStubsPtr->tcl_FirstHashEntry) /* 145 */ jpayne@69: #define Tcl_Flush \ jpayne@69: (tclStubsPtr->tcl_Flush) /* 146 */ jpayne@69: #define Tcl_FreeResult \ jpayne@69: (tclStubsPtr->tcl_FreeResult) /* 147 */ jpayne@69: #define Tcl_GetAlias \ jpayne@69: (tclStubsPtr->tcl_GetAlias) /* 148 */ jpayne@69: #define Tcl_GetAliasObj \ jpayne@69: (tclStubsPtr->tcl_GetAliasObj) /* 149 */ jpayne@69: #define Tcl_GetAssocData \ jpayne@69: (tclStubsPtr->tcl_GetAssocData) /* 150 */ jpayne@69: #define Tcl_GetChannel \ jpayne@69: (tclStubsPtr->tcl_GetChannel) /* 151 */ jpayne@69: #define Tcl_GetChannelBufferSize \ jpayne@69: (tclStubsPtr->tcl_GetChannelBufferSize) /* 152 */ jpayne@69: #define Tcl_GetChannelHandle \ jpayne@69: (tclStubsPtr->tcl_GetChannelHandle) /* 153 */ jpayne@69: #define Tcl_GetChannelInstanceData \ jpayne@69: (tclStubsPtr->tcl_GetChannelInstanceData) /* 154 */ jpayne@69: #define Tcl_GetChannelMode \ jpayne@69: (tclStubsPtr->tcl_GetChannelMode) /* 155 */ jpayne@69: #define Tcl_GetChannelName \ jpayne@69: (tclStubsPtr->tcl_GetChannelName) /* 156 */ jpayne@69: #define Tcl_GetChannelOption \ jpayne@69: (tclStubsPtr->tcl_GetChannelOption) /* 157 */ jpayne@69: #define Tcl_GetChannelType \ jpayne@69: (tclStubsPtr->tcl_GetChannelType) /* 158 */ jpayne@69: #define Tcl_GetCommandInfo \ jpayne@69: (tclStubsPtr->tcl_GetCommandInfo) /* 159 */ jpayne@69: #define Tcl_GetCommandName \ jpayne@69: (tclStubsPtr->tcl_GetCommandName) /* 160 */ jpayne@69: #define Tcl_GetErrno \ jpayne@69: (tclStubsPtr->tcl_GetErrno) /* 161 */ jpayne@69: #define Tcl_GetHostName \ jpayne@69: (tclStubsPtr->tcl_GetHostName) /* 162 */ jpayne@69: #define Tcl_GetInterpPath \ jpayne@69: (tclStubsPtr->tcl_GetInterpPath) /* 163 */ jpayne@69: #define Tcl_GetMaster \ jpayne@69: (tclStubsPtr->tcl_GetMaster) /* 164 */ jpayne@69: #define Tcl_GetNameOfExecutable \ jpayne@69: (tclStubsPtr->tcl_GetNameOfExecutable) /* 165 */ jpayne@69: #define Tcl_GetObjResult \ jpayne@69: (tclStubsPtr->tcl_GetObjResult) /* 166 */ jpayne@69: #if !defined(_WIN32) && !defined(MAC_OSX_TCL) /* UNIX */ jpayne@69: #define Tcl_GetOpenFile \ jpayne@69: (tclStubsPtr->tcl_GetOpenFile) /* 167 */ jpayne@69: #endif /* UNIX */ jpayne@69: #ifdef MAC_OSX_TCL /* MACOSX */ jpayne@69: #define Tcl_GetOpenFile \ jpayne@69: (tclStubsPtr->tcl_GetOpenFile) /* 167 */ jpayne@69: #endif /* MACOSX */ jpayne@69: #define Tcl_GetPathType \ jpayne@69: (tclStubsPtr->tcl_GetPathType) /* 168 */ jpayne@69: #define Tcl_Gets \ jpayne@69: (tclStubsPtr->tcl_Gets) /* 169 */ jpayne@69: #define Tcl_GetsObj \ jpayne@69: (tclStubsPtr->tcl_GetsObj) /* 170 */ jpayne@69: #define Tcl_GetServiceMode \ jpayne@69: (tclStubsPtr->tcl_GetServiceMode) /* 171 */ jpayne@69: #define Tcl_GetSlave \ jpayne@69: (tclStubsPtr->tcl_GetSlave) /* 172 */ jpayne@69: #define Tcl_GetStdChannel \ jpayne@69: (tclStubsPtr->tcl_GetStdChannel) /* 173 */ jpayne@69: #define Tcl_GetStringResult \ jpayne@69: (tclStubsPtr->tcl_GetStringResult) /* 174 */ jpayne@69: #define Tcl_GetVar \ jpayne@69: (tclStubsPtr->tcl_GetVar) /* 175 */ jpayne@69: #define Tcl_GetVar2 \ jpayne@69: (tclStubsPtr->tcl_GetVar2) /* 176 */ jpayne@69: #define Tcl_GlobalEval \ jpayne@69: (tclStubsPtr->tcl_GlobalEval) /* 177 */ jpayne@69: #define Tcl_GlobalEvalObj \ jpayne@69: (tclStubsPtr->tcl_GlobalEvalObj) /* 178 */ jpayne@69: #define Tcl_HideCommand \ jpayne@69: (tclStubsPtr->tcl_HideCommand) /* 179 */ jpayne@69: #define Tcl_Init \ jpayne@69: (tclStubsPtr->tcl_Init) /* 180 */ jpayne@69: #define Tcl_InitHashTable \ jpayne@69: (tclStubsPtr->tcl_InitHashTable) /* 181 */ jpayne@69: #define Tcl_InputBlocked \ jpayne@69: (tclStubsPtr->tcl_InputBlocked) /* 182 */ jpayne@69: #define Tcl_InputBuffered \ jpayne@69: (tclStubsPtr->tcl_InputBuffered) /* 183 */ jpayne@69: #define Tcl_InterpDeleted \ jpayne@69: (tclStubsPtr->tcl_InterpDeleted) /* 184 */ jpayne@69: #define Tcl_IsSafe \ jpayne@69: (tclStubsPtr->tcl_IsSafe) /* 185 */ jpayne@69: #define Tcl_JoinPath \ jpayne@69: (tclStubsPtr->tcl_JoinPath) /* 186 */ jpayne@69: #define Tcl_LinkVar \ jpayne@69: (tclStubsPtr->tcl_LinkVar) /* 187 */ jpayne@69: /* Slot 188 is reserved */ jpayne@69: #define Tcl_MakeFileChannel \ jpayne@69: (tclStubsPtr->tcl_MakeFileChannel) /* 189 */ jpayne@69: #define Tcl_MakeSafe \ jpayne@69: (tclStubsPtr->tcl_MakeSafe) /* 190 */ jpayne@69: #define Tcl_MakeTcpClientChannel \ jpayne@69: (tclStubsPtr->tcl_MakeTcpClientChannel) /* 191 */ jpayne@69: #define Tcl_Merge \ jpayne@69: (tclStubsPtr->tcl_Merge) /* 192 */ jpayne@69: #define Tcl_NextHashEntry \ jpayne@69: (tclStubsPtr->tcl_NextHashEntry) /* 193 */ jpayne@69: #define Tcl_NotifyChannel \ jpayne@69: (tclStubsPtr->tcl_NotifyChannel) /* 194 */ jpayne@69: #define Tcl_ObjGetVar2 \ jpayne@69: (tclStubsPtr->tcl_ObjGetVar2) /* 195 */ jpayne@69: #define Tcl_ObjSetVar2 \ jpayne@69: (tclStubsPtr->tcl_ObjSetVar2) /* 196 */ jpayne@69: #define Tcl_OpenCommandChannel \ jpayne@69: (tclStubsPtr->tcl_OpenCommandChannel) /* 197 */ jpayne@69: #define Tcl_OpenFileChannel \ jpayne@69: (tclStubsPtr->tcl_OpenFileChannel) /* 198 */ jpayne@69: #define Tcl_OpenTcpClient \ jpayne@69: (tclStubsPtr->tcl_OpenTcpClient) /* 199 */ jpayne@69: #define Tcl_OpenTcpServer \ jpayne@69: (tclStubsPtr->tcl_OpenTcpServer) /* 200 */ jpayne@69: #define Tcl_Preserve \ jpayne@69: (tclStubsPtr->tcl_Preserve) /* 201 */ jpayne@69: #define Tcl_PrintDouble \ jpayne@69: (tclStubsPtr->tcl_PrintDouble) /* 202 */ jpayne@69: #define Tcl_PutEnv \ jpayne@69: (tclStubsPtr->tcl_PutEnv) /* 203 */ jpayne@69: #define Tcl_PosixError \ jpayne@69: (tclStubsPtr->tcl_PosixError) /* 204 */ jpayne@69: #define Tcl_QueueEvent \ jpayne@69: (tclStubsPtr->tcl_QueueEvent) /* 205 */ jpayne@69: #define Tcl_Read \ jpayne@69: (tclStubsPtr->tcl_Read) /* 206 */ jpayne@69: #define Tcl_ReapDetachedProcs \ jpayne@69: (tclStubsPtr->tcl_ReapDetachedProcs) /* 207 */ jpayne@69: #define Tcl_RecordAndEval \ jpayne@69: (tclStubsPtr->tcl_RecordAndEval) /* 208 */ jpayne@69: #define Tcl_RecordAndEvalObj \ jpayne@69: (tclStubsPtr->tcl_RecordAndEvalObj) /* 209 */ jpayne@69: #define Tcl_RegisterChannel \ jpayne@69: (tclStubsPtr->tcl_RegisterChannel) /* 210 */ jpayne@69: #define Tcl_RegisterObjType \ jpayne@69: (tclStubsPtr->tcl_RegisterObjType) /* 211 */ jpayne@69: #define Tcl_RegExpCompile \ jpayne@69: (tclStubsPtr->tcl_RegExpCompile) /* 212 */ jpayne@69: #define Tcl_RegExpExec \ jpayne@69: (tclStubsPtr->tcl_RegExpExec) /* 213 */ jpayne@69: #define Tcl_RegExpMatch \ jpayne@69: (tclStubsPtr->tcl_RegExpMatch) /* 214 */ jpayne@69: #define Tcl_RegExpRange \ jpayne@69: (tclStubsPtr->tcl_RegExpRange) /* 215 */ jpayne@69: #define Tcl_Release \ jpayne@69: (tclStubsPtr->tcl_Release) /* 216 */ jpayne@69: #define Tcl_ResetResult \ jpayne@69: (tclStubsPtr->tcl_ResetResult) /* 217 */ jpayne@69: #define Tcl_ScanElement \ jpayne@69: (tclStubsPtr->tcl_ScanElement) /* 218 */ jpayne@69: #define Tcl_ScanCountedElement \ jpayne@69: (tclStubsPtr->tcl_ScanCountedElement) /* 219 */ jpayne@69: #define Tcl_SeekOld \ jpayne@69: (tclStubsPtr->tcl_SeekOld) /* 220 */ jpayne@69: #define Tcl_ServiceAll \ jpayne@69: (tclStubsPtr->tcl_ServiceAll) /* 221 */ jpayne@69: #define Tcl_ServiceEvent \ jpayne@69: (tclStubsPtr->tcl_ServiceEvent) /* 222 */ jpayne@69: #define Tcl_SetAssocData \ jpayne@69: (tclStubsPtr->tcl_SetAssocData) /* 223 */ jpayne@69: #define Tcl_SetChannelBufferSize \ jpayne@69: (tclStubsPtr->tcl_SetChannelBufferSize) /* 224 */ jpayne@69: #define Tcl_SetChannelOption \ jpayne@69: (tclStubsPtr->tcl_SetChannelOption) /* 225 */ jpayne@69: #define Tcl_SetCommandInfo \ jpayne@69: (tclStubsPtr->tcl_SetCommandInfo) /* 226 */ jpayne@69: #define Tcl_SetErrno \ jpayne@69: (tclStubsPtr->tcl_SetErrno) /* 227 */ jpayne@69: #define Tcl_SetErrorCode \ jpayne@69: (tclStubsPtr->tcl_SetErrorCode) /* 228 */ jpayne@69: #define Tcl_SetMaxBlockTime \ jpayne@69: (tclStubsPtr->tcl_SetMaxBlockTime) /* 229 */ jpayne@69: #define Tcl_SetPanicProc \ jpayne@69: (tclStubsPtr->tcl_SetPanicProc) /* 230 */ jpayne@69: #define Tcl_SetRecursionLimit \ jpayne@69: (tclStubsPtr->tcl_SetRecursionLimit) /* 231 */ jpayne@69: #define Tcl_SetResult \ jpayne@69: (tclStubsPtr->tcl_SetResult) /* 232 */ jpayne@69: #define Tcl_SetServiceMode \ jpayne@69: (tclStubsPtr->tcl_SetServiceMode) /* 233 */ jpayne@69: #define Tcl_SetObjErrorCode \ jpayne@69: (tclStubsPtr->tcl_SetObjErrorCode) /* 234 */ jpayne@69: #define Tcl_SetObjResult \ jpayne@69: (tclStubsPtr->tcl_SetObjResult) /* 235 */ jpayne@69: #define Tcl_SetStdChannel \ jpayne@69: (tclStubsPtr->tcl_SetStdChannel) /* 236 */ jpayne@69: #define Tcl_SetVar \ jpayne@69: (tclStubsPtr->tcl_SetVar) /* 237 */ jpayne@69: #define Tcl_SetVar2 \ jpayne@69: (tclStubsPtr->tcl_SetVar2) /* 238 */ jpayne@69: #define Tcl_SignalId \ jpayne@69: (tclStubsPtr->tcl_SignalId) /* 239 */ jpayne@69: #define Tcl_SignalMsg \ jpayne@69: (tclStubsPtr->tcl_SignalMsg) /* 240 */ jpayne@69: #define Tcl_SourceRCFile \ jpayne@69: (tclStubsPtr->tcl_SourceRCFile) /* 241 */ jpayne@69: #define Tcl_SplitList \ jpayne@69: (tclStubsPtr->tcl_SplitList) /* 242 */ jpayne@69: #define Tcl_SplitPath \ jpayne@69: (tclStubsPtr->tcl_SplitPath) /* 243 */ jpayne@69: #define Tcl_StaticPackage \ jpayne@69: (tclStubsPtr->tcl_StaticPackage) /* 244 */ jpayne@69: #define Tcl_StringMatch \ jpayne@69: (tclStubsPtr->tcl_StringMatch) /* 245 */ jpayne@69: #define Tcl_TellOld \ jpayne@69: (tclStubsPtr->tcl_TellOld) /* 246 */ jpayne@69: #define Tcl_TraceVar \ jpayne@69: (tclStubsPtr->tcl_TraceVar) /* 247 */ jpayne@69: #define Tcl_TraceVar2 \ jpayne@69: (tclStubsPtr->tcl_TraceVar2) /* 248 */ jpayne@69: #define Tcl_TranslateFileName \ jpayne@69: (tclStubsPtr->tcl_TranslateFileName) /* 249 */ jpayne@69: #define Tcl_Ungets \ jpayne@69: (tclStubsPtr->tcl_Ungets) /* 250 */ jpayne@69: #define Tcl_UnlinkVar \ jpayne@69: (tclStubsPtr->tcl_UnlinkVar) /* 251 */ jpayne@69: #define Tcl_UnregisterChannel \ jpayne@69: (tclStubsPtr->tcl_UnregisterChannel) /* 252 */ jpayne@69: #define Tcl_UnsetVar \ jpayne@69: (tclStubsPtr->tcl_UnsetVar) /* 253 */ jpayne@69: #define Tcl_UnsetVar2 \ jpayne@69: (tclStubsPtr->tcl_UnsetVar2) /* 254 */ jpayne@69: #define Tcl_UntraceVar \ jpayne@69: (tclStubsPtr->tcl_UntraceVar) /* 255 */ jpayne@69: #define Tcl_UntraceVar2 \ jpayne@69: (tclStubsPtr->tcl_UntraceVar2) /* 256 */ jpayne@69: #define Tcl_UpdateLinkedVar \ jpayne@69: (tclStubsPtr->tcl_UpdateLinkedVar) /* 257 */ jpayne@69: #define Tcl_UpVar \ jpayne@69: (tclStubsPtr->tcl_UpVar) /* 258 */ jpayne@69: #define Tcl_UpVar2 \ jpayne@69: (tclStubsPtr->tcl_UpVar2) /* 259 */ jpayne@69: #define Tcl_VarEval \ jpayne@69: (tclStubsPtr->tcl_VarEval) /* 260 */ jpayne@69: #define Tcl_VarTraceInfo \ jpayne@69: (tclStubsPtr->tcl_VarTraceInfo) /* 261 */ jpayne@69: #define Tcl_VarTraceInfo2 \ jpayne@69: (tclStubsPtr->tcl_VarTraceInfo2) /* 262 */ jpayne@69: #define Tcl_Write \ jpayne@69: (tclStubsPtr->tcl_Write) /* 263 */ jpayne@69: #define Tcl_WrongNumArgs \ jpayne@69: (tclStubsPtr->tcl_WrongNumArgs) /* 264 */ jpayne@69: #define Tcl_DumpActiveMemory \ jpayne@69: (tclStubsPtr->tcl_DumpActiveMemory) /* 265 */ jpayne@69: #define Tcl_ValidateAllMemory \ jpayne@69: (tclStubsPtr->tcl_ValidateAllMemory) /* 266 */ jpayne@69: #define Tcl_AppendResultVA \ jpayne@69: (tclStubsPtr->tcl_AppendResultVA) /* 267 */ jpayne@69: #define Tcl_AppendStringsToObjVA \ jpayne@69: (tclStubsPtr->tcl_AppendStringsToObjVA) /* 268 */ jpayne@69: #define Tcl_HashStats \ jpayne@69: (tclStubsPtr->tcl_HashStats) /* 269 */ jpayne@69: #define Tcl_ParseVar \ jpayne@69: (tclStubsPtr->tcl_ParseVar) /* 270 */ jpayne@69: #define Tcl_PkgPresent \ jpayne@69: (tclStubsPtr->tcl_PkgPresent) /* 271 */ jpayne@69: #define Tcl_PkgPresentEx \ jpayne@69: (tclStubsPtr->tcl_PkgPresentEx) /* 272 */ jpayne@69: #define Tcl_PkgProvide \ jpayne@69: (tclStubsPtr->tcl_PkgProvide) /* 273 */ jpayne@69: #define Tcl_PkgRequire \ jpayne@69: (tclStubsPtr->tcl_PkgRequire) /* 274 */ jpayne@69: #define Tcl_SetErrorCodeVA \ jpayne@69: (tclStubsPtr->tcl_SetErrorCodeVA) /* 275 */ jpayne@69: #define Tcl_VarEvalVA \ jpayne@69: (tclStubsPtr->tcl_VarEvalVA) /* 276 */ jpayne@69: #define Tcl_WaitPid \ jpayne@69: (tclStubsPtr->tcl_WaitPid) /* 277 */ jpayne@69: #define Tcl_PanicVA \ jpayne@69: (tclStubsPtr->tcl_PanicVA) /* 278 */ jpayne@69: #define Tcl_GetVersion \ jpayne@69: (tclStubsPtr->tcl_GetVersion) /* 279 */ jpayne@69: #define Tcl_InitMemory \ jpayne@69: (tclStubsPtr->tcl_InitMemory) /* 280 */ jpayne@69: #define Tcl_StackChannel \ jpayne@69: (tclStubsPtr->tcl_StackChannel) /* 281 */ jpayne@69: #define Tcl_UnstackChannel \ jpayne@69: (tclStubsPtr->tcl_UnstackChannel) /* 282 */ jpayne@69: #define Tcl_GetStackedChannel \ jpayne@69: (tclStubsPtr->tcl_GetStackedChannel) /* 283 */ jpayne@69: #define Tcl_SetMainLoop \ jpayne@69: (tclStubsPtr->tcl_SetMainLoop) /* 284 */ jpayne@69: /* Slot 285 is reserved */ jpayne@69: #define Tcl_AppendObjToObj \ jpayne@69: (tclStubsPtr->tcl_AppendObjToObj) /* 286 */ jpayne@69: #define Tcl_CreateEncoding \ jpayne@69: (tclStubsPtr->tcl_CreateEncoding) /* 287 */ jpayne@69: #define Tcl_CreateThreadExitHandler \ jpayne@69: (tclStubsPtr->tcl_CreateThreadExitHandler) /* 288 */ jpayne@69: #define Tcl_DeleteThreadExitHandler \ jpayne@69: (tclStubsPtr->tcl_DeleteThreadExitHandler) /* 289 */ jpayne@69: #define Tcl_DiscardResult \ jpayne@69: (tclStubsPtr->tcl_DiscardResult) /* 290 */ jpayne@69: #define Tcl_EvalEx \ jpayne@69: (tclStubsPtr->tcl_EvalEx) /* 291 */ jpayne@69: #define Tcl_EvalObjv \ jpayne@69: (tclStubsPtr->tcl_EvalObjv) /* 292 */ jpayne@69: #define Tcl_EvalObjEx \ jpayne@69: (tclStubsPtr->tcl_EvalObjEx) /* 293 */ jpayne@69: #define Tcl_ExitThread \ jpayne@69: (tclStubsPtr->tcl_ExitThread) /* 294 */ jpayne@69: #define Tcl_ExternalToUtf \ jpayne@69: (tclStubsPtr->tcl_ExternalToUtf) /* 295 */ jpayne@69: #define Tcl_ExternalToUtfDString \ jpayne@69: (tclStubsPtr->tcl_ExternalToUtfDString) /* 296 */ jpayne@69: #define Tcl_FinalizeThread \ jpayne@69: (tclStubsPtr->tcl_FinalizeThread) /* 297 */ jpayne@69: #define Tcl_FinalizeNotifier \ jpayne@69: (tclStubsPtr->tcl_FinalizeNotifier) /* 298 */ jpayne@69: #define Tcl_FreeEncoding \ jpayne@69: (tclStubsPtr->tcl_FreeEncoding) /* 299 */ jpayne@69: #define Tcl_GetCurrentThread \ jpayne@69: (tclStubsPtr->tcl_GetCurrentThread) /* 300 */ jpayne@69: #define Tcl_GetEncoding \ jpayne@69: (tclStubsPtr->tcl_GetEncoding) /* 301 */ jpayne@69: #define Tcl_GetEncodingName \ jpayne@69: (tclStubsPtr->tcl_GetEncodingName) /* 302 */ jpayne@69: #define Tcl_GetEncodingNames \ jpayne@69: (tclStubsPtr->tcl_GetEncodingNames) /* 303 */ jpayne@69: #define Tcl_GetIndexFromObjStruct \ jpayne@69: (tclStubsPtr->tcl_GetIndexFromObjStruct) /* 304 */ jpayne@69: #define Tcl_GetThreadData \ jpayne@69: (tclStubsPtr->tcl_GetThreadData) /* 305 */ jpayne@69: #define Tcl_GetVar2Ex \ jpayne@69: (tclStubsPtr->tcl_GetVar2Ex) /* 306 */ jpayne@69: #define Tcl_InitNotifier \ jpayne@69: (tclStubsPtr->tcl_InitNotifier) /* 307 */ jpayne@69: #define Tcl_MutexLock \ jpayne@69: (tclStubsPtr->tcl_MutexLock) /* 308 */ jpayne@69: #define Tcl_MutexUnlock \ jpayne@69: (tclStubsPtr->tcl_MutexUnlock) /* 309 */ jpayne@69: #define Tcl_ConditionNotify \ jpayne@69: (tclStubsPtr->tcl_ConditionNotify) /* 310 */ jpayne@69: #define Tcl_ConditionWait \ jpayne@69: (tclStubsPtr->tcl_ConditionWait) /* 311 */ jpayne@69: #define Tcl_NumUtfChars \ jpayne@69: (tclStubsPtr->tcl_NumUtfChars) /* 312 */ jpayne@69: #define Tcl_ReadChars \ jpayne@69: (tclStubsPtr->tcl_ReadChars) /* 313 */ jpayne@69: #define Tcl_RestoreResult \ jpayne@69: (tclStubsPtr->tcl_RestoreResult) /* 314 */ jpayne@69: #define Tcl_SaveResult \ jpayne@69: (tclStubsPtr->tcl_SaveResult) /* 315 */ jpayne@69: #define Tcl_SetSystemEncoding \ jpayne@69: (tclStubsPtr->tcl_SetSystemEncoding) /* 316 */ jpayne@69: #define Tcl_SetVar2Ex \ jpayne@69: (tclStubsPtr->tcl_SetVar2Ex) /* 317 */ jpayne@69: #define Tcl_ThreadAlert \ jpayne@69: (tclStubsPtr->tcl_ThreadAlert) /* 318 */ jpayne@69: #define Tcl_ThreadQueueEvent \ jpayne@69: (tclStubsPtr->tcl_ThreadQueueEvent) /* 319 */ jpayne@69: #define Tcl_UniCharAtIndex \ jpayne@69: (tclStubsPtr->tcl_UniCharAtIndex) /* 320 */ jpayne@69: #define Tcl_UniCharToLower \ jpayne@69: (tclStubsPtr->tcl_UniCharToLower) /* 321 */ jpayne@69: #define Tcl_UniCharToTitle \ jpayne@69: (tclStubsPtr->tcl_UniCharToTitle) /* 322 */ jpayne@69: #define Tcl_UniCharToUpper \ jpayne@69: (tclStubsPtr->tcl_UniCharToUpper) /* 323 */ jpayne@69: #define Tcl_UniCharToUtf \ jpayne@69: (tclStubsPtr->tcl_UniCharToUtf) /* 324 */ jpayne@69: #define Tcl_UtfAtIndex \ jpayne@69: (tclStubsPtr->tcl_UtfAtIndex) /* 325 */ jpayne@69: #define Tcl_UtfCharComplete \ jpayne@69: (tclStubsPtr->tcl_UtfCharComplete) /* 326 */ jpayne@69: #define Tcl_UtfBackslash \ jpayne@69: (tclStubsPtr->tcl_UtfBackslash) /* 327 */ jpayne@69: #define Tcl_UtfFindFirst \ jpayne@69: (tclStubsPtr->tcl_UtfFindFirst) /* 328 */ jpayne@69: #define Tcl_UtfFindLast \ jpayne@69: (tclStubsPtr->tcl_UtfFindLast) /* 329 */ jpayne@69: #define Tcl_UtfNext \ jpayne@69: (tclStubsPtr->tcl_UtfNext) /* 330 */ jpayne@69: #define Tcl_UtfPrev \ jpayne@69: (tclStubsPtr->tcl_UtfPrev) /* 331 */ jpayne@69: #define Tcl_UtfToExternal \ jpayne@69: (tclStubsPtr->tcl_UtfToExternal) /* 332 */ jpayne@69: #define Tcl_UtfToExternalDString \ jpayne@69: (tclStubsPtr->tcl_UtfToExternalDString) /* 333 */ jpayne@69: #define Tcl_UtfToLower \ jpayne@69: (tclStubsPtr->tcl_UtfToLower) /* 334 */ jpayne@69: #define Tcl_UtfToTitle \ jpayne@69: (tclStubsPtr->tcl_UtfToTitle) /* 335 */ jpayne@69: #define Tcl_UtfToUniChar \ jpayne@69: (tclStubsPtr->tcl_UtfToUniChar) /* 336 */ jpayne@69: #define Tcl_UtfToUpper \ jpayne@69: (tclStubsPtr->tcl_UtfToUpper) /* 337 */ jpayne@69: #define Tcl_WriteChars \ jpayne@69: (tclStubsPtr->tcl_WriteChars) /* 338 */ jpayne@69: #define Tcl_WriteObj \ jpayne@69: (tclStubsPtr->tcl_WriteObj) /* 339 */ jpayne@69: #define Tcl_GetString \ jpayne@69: (tclStubsPtr->tcl_GetString) /* 340 */ jpayne@69: #define Tcl_GetDefaultEncodingDir \ jpayne@69: (tclStubsPtr->tcl_GetDefaultEncodingDir) /* 341 */ jpayne@69: #define Tcl_SetDefaultEncodingDir \ jpayne@69: (tclStubsPtr->tcl_SetDefaultEncodingDir) /* 342 */ jpayne@69: #define Tcl_AlertNotifier \ jpayne@69: (tclStubsPtr->tcl_AlertNotifier) /* 343 */ jpayne@69: #define Tcl_ServiceModeHook \ jpayne@69: (tclStubsPtr->tcl_ServiceModeHook) /* 344 */ jpayne@69: #define Tcl_UniCharIsAlnum \ jpayne@69: (tclStubsPtr->tcl_UniCharIsAlnum) /* 345 */ jpayne@69: #define Tcl_UniCharIsAlpha \ jpayne@69: (tclStubsPtr->tcl_UniCharIsAlpha) /* 346 */ jpayne@69: #define Tcl_UniCharIsDigit \ jpayne@69: (tclStubsPtr->tcl_UniCharIsDigit) /* 347 */ jpayne@69: #define Tcl_UniCharIsLower \ jpayne@69: (tclStubsPtr->tcl_UniCharIsLower) /* 348 */ jpayne@69: #define Tcl_UniCharIsSpace \ jpayne@69: (tclStubsPtr->tcl_UniCharIsSpace) /* 349 */ jpayne@69: #define Tcl_UniCharIsUpper \ jpayne@69: (tclStubsPtr->tcl_UniCharIsUpper) /* 350 */ jpayne@69: #define Tcl_UniCharIsWordChar \ jpayne@69: (tclStubsPtr->tcl_UniCharIsWordChar) /* 351 */ jpayne@69: #define Tcl_UniCharLen \ jpayne@69: (tclStubsPtr->tcl_UniCharLen) /* 352 */ jpayne@69: #define Tcl_UniCharNcmp \ jpayne@69: (tclStubsPtr->tcl_UniCharNcmp) /* 353 */ jpayne@69: #define Tcl_UniCharToUtfDString \ jpayne@69: (tclStubsPtr->tcl_UniCharToUtfDString) /* 354 */ jpayne@69: #define Tcl_UtfToUniCharDString \ jpayne@69: (tclStubsPtr->tcl_UtfToUniCharDString) /* 355 */ jpayne@69: #define Tcl_GetRegExpFromObj \ jpayne@69: (tclStubsPtr->tcl_GetRegExpFromObj) /* 356 */ jpayne@69: #define Tcl_EvalTokens \ jpayne@69: (tclStubsPtr->tcl_EvalTokens) /* 357 */ jpayne@69: #define Tcl_FreeParse \ jpayne@69: (tclStubsPtr->tcl_FreeParse) /* 358 */ jpayne@69: #define Tcl_LogCommandInfo \ jpayne@69: (tclStubsPtr->tcl_LogCommandInfo) /* 359 */ jpayne@69: #define Tcl_ParseBraces \ jpayne@69: (tclStubsPtr->tcl_ParseBraces) /* 360 */ jpayne@69: #define Tcl_ParseCommand \ jpayne@69: (tclStubsPtr->tcl_ParseCommand) /* 361 */ jpayne@69: #define Tcl_ParseExpr \ jpayne@69: (tclStubsPtr->tcl_ParseExpr) /* 362 */ jpayne@69: #define Tcl_ParseQuotedString \ jpayne@69: (tclStubsPtr->tcl_ParseQuotedString) /* 363 */ jpayne@69: #define Tcl_ParseVarName \ jpayne@69: (tclStubsPtr->tcl_ParseVarName) /* 364 */ jpayne@69: #define Tcl_GetCwd \ jpayne@69: (tclStubsPtr->tcl_GetCwd) /* 365 */ jpayne@69: #define Tcl_Chdir \ jpayne@69: (tclStubsPtr->tcl_Chdir) /* 366 */ jpayne@69: #define Tcl_Access \ jpayne@69: (tclStubsPtr->tcl_Access) /* 367 */ jpayne@69: #define Tcl_Stat \ jpayne@69: (tclStubsPtr->tcl_Stat) /* 368 */ jpayne@69: #define Tcl_UtfNcmp \ jpayne@69: (tclStubsPtr->tcl_UtfNcmp) /* 369 */ jpayne@69: #define Tcl_UtfNcasecmp \ jpayne@69: (tclStubsPtr->tcl_UtfNcasecmp) /* 370 */ jpayne@69: #define Tcl_StringCaseMatch \ jpayne@69: (tclStubsPtr->tcl_StringCaseMatch) /* 371 */ jpayne@69: #define Tcl_UniCharIsControl \ jpayne@69: (tclStubsPtr->tcl_UniCharIsControl) /* 372 */ jpayne@69: #define Tcl_UniCharIsGraph \ jpayne@69: (tclStubsPtr->tcl_UniCharIsGraph) /* 373 */ jpayne@69: #define Tcl_UniCharIsPrint \ jpayne@69: (tclStubsPtr->tcl_UniCharIsPrint) /* 374 */ jpayne@69: #define Tcl_UniCharIsPunct \ jpayne@69: (tclStubsPtr->tcl_UniCharIsPunct) /* 375 */ jpayne@69: #define Tcl_RegExpExecObj \ jpayne@69: (tclStubsPtr->tcl_RegExpExecObj) /* 376 */ jpayne@69: #define Tcl_RegExpGetInfo \ jpayne@69: (tclStubsPtr->tcl_RegExpGetInfo) /* 377 */ jpayne@69: #define Tcl_NewUnicodeObj \ jpayne@69: (tclStubsPtr->tcl_NewUnicodeObj) /* 378 */ jpayne@69: #define Tcl_SetUnicodeObj \ jpayne@69: (tclStubsPtr->tcl_SetUnicodeObj) /* 379 */ jpayne@69: #define Tcl_GetCharLength \ jpayne@69: (tclStubsPtr->tcl_GetCharLength) /* 380 */ jpayne@69: #define Tcl_GetUniChar \ jpayne@69: (tclStubsPtr->tcl_GetUniChar) /* 381 */ jpayne@69: #define Tcl_GetUnicode \ jpayne@69: (tclStubsPtr->tcl_GetUnicode) /* 382 */ jpayne@69: #define Tcl_GetRange \ jpayne@69: (tclStubsPtr->tcl_GetRange) /* 383 */ jpayne@69: #define Tcl_AppendUnicodeToObj \ jpayne@69: (tclStubsPtr->tcl_AppendUnicodeToObj) /* 384 */ jpayne@69: #define Tcl_RegExpMatchObj \ jpayne@69: (tclStubsPtr->tcl_RegExpMatchObj) /* 385 */ jpayne@69: #define Tcl_SetNotifier \ jpayne@69: (tclStubsPtr->tcl_SetNotifier) /* 386 */ jpayne@69: #define Tcl_GetAllocMutex \ jpayne@69: (tclStubsPtr->tcl_GetAllocMutex) /* 387 */ jpayne@69: #define Tcl_GetChannelNames \ jpayne@69: (tclStubsPtr->tcl_GetChannelNames) /* 388 */ jpayne@69: #define Tcl_GetChannelNamesEx \ jpayne@69: (tclStubsPtr->tcl_GetChannelNamesEx) /* 389 */ jpayne@69: #define Tcl_ProcObjCmd \ jpayne@69: (tclStubsPtr->tcl_ProcObjCmd) /* 390 */ jpayne@69: #define Tcl_ConditionFinalize \ jpayne@69: (tclStubsPtr->tcl_ConditionFinalize) /* 391 */ jpayne@69: #define Tcl_MutexFinalize \ jpayne@69: (tclStubsPtr->tcl_MutexFinalize) /* 392 */ jpayne@69: #define Tcl_CreateThread \ jpayne@69: (tclStubsPtr->tcl_CreateThread) /* 393 */ jpayne@69: #define Tcl_ReadRaw \ jpayne@69: (tclStubsPtr->tcl_ReadRaw) /* 394 */ jpayne@69: #define Tcl_WriteRaw \ jpayne@69: (tclStubsPtr->tcl_WriteRaw) /* 395 */ jpayne@69: #define Tcl_GetTopChannel \ jpayne@69: (tclStubsPtr->tcl_GetTopChannel) /* 396 */ jpayne@69: #define Tcl_ChannelBuffered \ jpayne@69: (tclStubsPtr->tcl_ChannelBuffered) /* 397 */ jpayne@69: #define Tcl_ChannelName \ jpayne@69: (tclStubsPtr->tcl_ChannelName) /* 398 */ jpayne@69: #define Tcl_ChannelVersion \ jpayne@69: (tclStubsPtr->tcl_ChannelVersion) /* 399 */ jpayne@69: #define Tcl_ChannelBlockModeProc \ jpayne@69: (tclStubsPtr->tcl_ChannelBlockModeProc) /* 400 */ jpayne@69: #define Tcl_ChannelCloseProc \ jpayne@69: (tclStubsPtr->tcl_ChannelCloseProc) /* 401 */ jpayne@69: #define Tcl_ChannelClose2Proc \ jpayne@69: (tclStubsPtr->tcl_ChannelClose2Proc) /* 402 */ jpayne@69: #define Tcl_ChannelInputProc \ jpayne@69: (tclStubsPtr->tcl_ChannelInputProc) /* 403 */ jpayne@69: #define Tcl_ChannelOutputProc \ jpayne@69: (tclStubsPtr->tcl_ChannelOutputProc) /* 404 */ jpayne@69: #define Tcl_ChannelSeekProc \ jpayne@69: (tclStubsPtr->tcl_ChannelSeekProc) /* 405 */ jpayne@69: #define Tcl_ChannelSetOptionProc \ jpayne@69: (tclStubsPtr->tcl_ChannelSetOptionProc) /* 406 */ jpayne@69: #define Tcl_ChannelGetOptionProc \ jpayne@69: (tclStubsPtr->tcl_ChannelGetOptionProc) /* 407 */ jpayne@69: #define Tcl_ChannelWatchProc \ jpayne@69: (tclStubsPtr->tcl_ChannelWatchProc) /* 408 */ jpayne@69: #define Tcl_ChannelGetHandleProc \ jpayne@69: (tclStubsPtr->tcl_ChannelGetHandleProc) /* 409 */ jpayne@69: #define Tcl_ChannelFlushProc \ jpayne@69: (tclStubsPtr->tcl_ChannelFlushProc) /* 410 */ jpayne@69: #define Tcl_ChannelHandlerProc \ jpayne@69: (tclStubsPtr->tcl_ChannelHandlerProc) /* 411 */ jpayne@69: #define Tcl_JoinThread \ jpayne@69: (tclStubsPtr->tcl_JoinThread) /* 412 */ jpayne@69: #define Tcl_IsChannelShared \ jpayne@69: (tclStubsPtr->tcl_IsChannelShared) /* 413 */ jpayne@69: #define Tcl_IsChannelRegistered \ jpayne@69: (tclStubsPtr->tcl_IsChannelRegistered) /* 414 */ jpayne@69: #define Tcl_CutChannel \ jpayne@69: (tclStubsPtr->tcl_CutChannel) /* 415 */ jpayne@69: #define Tcl_SpliceChannel \ jpayne@69: (tclStubsPtr->tcl_SpliceChannel) /* 416 */ jpayne@69: #define Tcl_ClearChannelHandlers \ jpayne@69: (tclStubsPtr->tcl_ClearChannelHandlers) /* 417 */ jpayne@69: #define Tcl_IsChannelExisting \ jpayne@69: (tclStubsPtr->tcl_IsChannelExisting) /* 418 */ jpayne@69: #define Tcl_UniCharNcasecmp \ jpayne@69: (tclStubsPtr->tcl_UniCharNcasecmp) /* 419 */ jpayne@69: #define Tcl_UniCharCaseMatch \ jpayne@69: (tclStubsPtr->tcl_UniCharCaseMatch) /* 420 */ jpayne@69: #define Tcl_FindHashEntry \ jpayne@69: (tclStubsPtr->tcl_FindHashEntry) /* 421 */ jpayne@69: #define Tcl_CreateHashEntry \ jpayne@69: (tclStubsPtr->tcl_CreateHashEntry) /* 422 */ jpayne@69: #define Tcl_InitCustomHashTable \ jpayne@69: (tclStubsPtr->tcl_InitCustomHashTable) /* 423 */ jpayne@69: #define Tcl_InitObjHashTable \ jpayne@69: (tclStubsPtr->tcl_InitObjHashTable) /* 424 */ jpayne@69: #define Tcl_CommandTraceInfo \ jpayne@69: (tclStubsPtr->tcl_CommandTraceInfo) /* 425 */ jpayne@69: #define Tcl_TraceCommand \ jpayne@69: (tclStubsPtr->tcl_TraceCommand) /* 426 */ jpayne@69: #define Tcl_UntraceCommand \ jpayne@69: (tclStubsPtr->tcl_UntraceCommand) /* 427 */ jpayne@69: #define Tcl_AttemptAlloc \ jpayne@69: (tclStubsPtr->tcl_AttemptAlloc) /* 428 */ jpayne@69: #define Tcl_AttemptDbCkalloc \ jpayne@69: (tclStubsPtr->tcl_AttemptDbCkalloc) /* 429 */ jpayne@69: #define Tcl_AttemptRealloc \ jpayne@69: (tclStubsPtr->tcl_AttemptRealloc) /* 430 */ jpayne@69: #define Tcl_AttemptDbCkrealloc \ jpayne@69: (tclStubsPtr->tcl_AttemptDbCkrealloc) /* 431 */ jpayne@69: #define Tcl_AttemptSetObjLength \ jpayne@69: (tclStubsPtr->tcl_AttemptSetObjLength) /* 432 */ jpayne@69: #define Tcl_GetChannelThread \ jpayne@69: (tclStubsPtr->tcl_GetChannelThread) /* 433 */ jpayne@69: #define Tcl_GetUnicodeFromObj \ jpayne@69: (tclStubsPtr->tcl_GetUnicodeFromObj) /* 434 */ jpayne@69: #define Tcl_GetMathFuncInfo \ jpayne@69: (tclStubsPtr->tcl_GetMathFuncInfo) /* 435 */ jpayne@69: #define Tcl_ListMathFuncs \ jpayne@69: (tclStubsPtr->tcl_ListMathFuncs) /* 436 */ jpayne@69: #define Tcl_SubstObj \ jpayne@69: (tclStubsPtr->tcl_SubstObj) /* 437 */ jpayne@69: #define Tcl_DetachChannel \ jpayne@69: (tclStubsPtr->tcl_DetachChannel) /* 438 */ jpayne@69: #define Tcl_IsStandardChannel \ jpayne@69: (tclStubsPtr->tcl_IsStandardChannel) /* 439 */ jpayne@69: #define Tcl_FSCopyFile \ jpayne@69: (tclStubsPtr->tcl_FSCopyFile) /* 440 */ jpayne@69: #define Tcl_FSCopyDirectory \ jpayne@69: (tclStubsPtr->tcl_FSCopyDirectory) /* 441 */ jpayne@69: #define Tcl_FSCreateDirectory \ jpayne@69: (tclStubsPtr->tcl_FSCreateDirectory) /* 442 */ jpayne@69: #define Tcl_FSDeleteFile \ jpayne@69: (tclStubsPtr->tcl_FSDeleteFile) /* 443 */ jpayne@69: #define Tcl_FSLoadFile \ jpayne@69: (tclStubsPtr->tcl_FSLoadFile) /* 444 */ jpayne@69: #define Tcl_FSMatchInDirectory \ jpayne@69: (tclStubsPtr->tcl_FSMatchInDirectory) /* 445 */ jpayne@69: #define Tcl_FSLink \ jpayne@69: (tclStubsPtr->tcl_FSLink) /* 446 */ jpayne@69: #define Tcl_FSRemoveDirectory \ jpayne@69: (tclStubsPtr->tcl_FSRemoveDirectory) /* 447 */ jpayne@69: #define Tcl_FSRenameFile \ jpayne@69: (tclStubsPtr->tcl_FSRenameFile) /* 448 */ jpayne@69: #define Tcl_FSLstat \ jpayne@69: (tclStubsPtr->tcl_FSLstat) /* 449 */ jpayne@69: #define Tcl_FSUtime \ jpayne@69: (tclStubsPtr->tcl_FSUtime) /* 450 */ jpayne@69: #define Tcl_FSFileAttrsGet \ jpayne@69: (tclStubsPtr->tcl_FSFileAttrsGet) /* 451 */ jpayne@69: #define Tcl_FSFileAttrsSet \ jpayne@69: (tclStubsPtr->tcl_FSFileAttrsSet) /* 452 */ jpayne@69: #define Tcl_FSFileAttrStrings \ jpayne@69: (tclStubsPtr->tcl_FSFileAttrStrings) /* 453 */ jpayne@69: #define Tcl_FSStat \ jpayne@69: (tclStubsPtr->tcl_FSStat) /* 454 */ jpayne@69: #define Tcl_FSAccess \ jpayne@69: (tclStubsPtr->tcl_FSAccess) /* 455 */ jpayne@69: #define Tcl_FSOpenFileChannel \ jpayne@69: (tclStubsPtr->tcl_FSOpenFileChannel) /* 456 */ jpayne@69: #define Tcl_FSGetCwd \ jpayne@69: (tclStubsPtr->tcl_FSGetCwd) /* 457 */ jpayne@69: #define Tcl_FSChdir \ jpayne@69: (tclStubsPtr->tcl_FSChdir) /* 458 */ jpayne@69: #define Tcl_FSConvertToPathType \ jpayne@69: (tclStubsPtr->tcl_FSConvertToPathType) /* 459 */ jpayne@69: #define Tcl_FSJoinPath \ jpayne@69: (tclStubsPtr->tcl_FSJoinPath) /* 460 */ jpayne@69: #define Tcl_FSSplitPath \ jpayne@69: (tclStubsPtr->tcl_FSSplitPath) /* 461 */ jpayne@69: #define Tcl_FSEqualPaths \ jpayne@69: (tclStubsPtr->tcl_FSEqualPaths) /* 462 */ jpayne@69: #define Tcl_FSGetNormalizedPath \ jpayne@69: (tclStubsPtr->tcl_FSGetNormalizedPath) /* 463 */ jpayne@69: #define Tcl_FSJoinToPath \ jpayne@69: (tclStubsPtr->tcl_FSJoinToPath) /* 464 */ jpayne@69: #define Tcl_FSGetInternalRep \ jpayne@69: (tclStubsPtr->tcl_FSGetInternalRep) /* 465 */ jpayne@69: #define Tcl_FSGetTranslatedPath \ jpayne@69: (tclStubsPtr->tcl_FSGetTranslatedPath) /* 466 */ jpayne@69: #define Tcl_FSEvalFile \ jpayne@69: (tclStubsPtr->tcl_FSEvalFile) /* 467 */ jpayne@69: #define Tcl_FSNewNativePath \ jpayne@69: (tclStubsPtr->tcl_FSNewNativePath) /* 468 */ jpayne@69: #define Tcl_FSGetNativePath \ jpayne@69: (tclStubsPtr->tcl_FSGetNativePath) /* 469 */ jpayne@69: #define Tcl_FSFileSystemInfo \ jpayne@69: (tclStubsPtr->tcl_FSFileSystemInfo) /* 470 */ jpayne@69: #define Tcl_FSPathSeparator \ jpayne@69: (tclStubsPtr->tcl_FSPathSeparator) /* 471 */ jpayne@69: #define Tcl_FSListVolumes \ jpayne@69: (tclStubsPtr->tcl_FSListVolumes) /* 472 */ jpayne@69: #define Tcl_FSRegister \ jpayne@69: (tclStubsPtr->tcl_FSRegister) /* 473 */ jpayne@69: #define Tcl_FSUnregister \ jpayne@69: (tclStubsPtr->tcl_FSUnregister) /* 474 */ jpayne@69: #define Tcl_FSData \ jpayne@69: (tclStubsPtr->tcl_FSData) /* 475 */ jpayne@69: #define Tcl_FSGetTranslatedStringPath \ jpayne@69: (tclStubsPtr->tcl_FSGetTranslatedStringPath) /* 476 */ jpayne@69: #define Tcl_FSGetFileSystemForPath \ jpayne@69: (tclStubsPtr->tcl_FSGetFileSystemForPath) /* 477 */ jpayne@69: #define Tcl_FSGetPathType \ jpayne@69: (tclStubsPtr->tcl_FSGetPathType) /* 478 */ jpayne@69: #define Tcl_OutputBuffered \ jpayne@69: (tclStubsPtr->tcl_OutputBuffered) /* 479 */ jpayne@69: #define Tcl_FSMountsChanged \ jpayne@69: (tclStubsPtr->tcl_FSMountsChanged) /* 480 */ jpayne@69: #define Tcl_EvalTokensStandard \ jpayne@69: (tclStubsPtr->tcl_EvalTokensStandard) /* 481 */ jpayne@69: #define Tcl_GetTime \ jpayne@69: (tclStubsPtr->tcl_GetTime) /* 482 */ jpayne@69: #define Tcl_CreateObjTrace \ jpayne@69: (tclStubsPtr->tcl_CreateObjTrace) /* 483 */ jpayne@69: #define Tcl_GetCommandInfoFromToken \ jpayne@69: (tclStubsPtr->tcl_GetCommandInfoFromToken) /* 484 */ jpayne@69: #define Tcl_SetCommandInfoFromToken \ jpayne@69: (tclStubsPtr->tcl_SetCommandInfoFromToken) /* 485 */ jpayne@69: #define Tcl_DbNewWideIntObj \ jpayne@69: (tclStubsPtr->tcl_DbNewWideIntObj) /* 486 */ jpayne@69: #define Tcl_GetWideIntFromObj \ jpayne@69: (tclStubsPtr->tcl_GetWideIntFromObj) /* 487 */ jpayne@69: #define Tcl_NewWideIntObj \ jpayne@69: (tclStubsPtr->tcl_NewWideIntObj) /* 488 */ jpayne@69: #define Tcl_SetWideIntObj \ jpayne@69: (tclStubsPtr->tcl_SetWideIntObj) /* 489 */ jpayne@69: #define Tcl_AllocStatBuf \ jpayne@69: (tclStubsPtr->tcl_AllocStatBuf) /* 490 */ jpayne@69: #define Tcl_Seek \ jpayne@69: (tclStubsPtr->tcl_Seek) /* 491 */ jpayne@69: #define Tcl_Tell \ jpayne@69: (tclStubsPtr->tcl_Tell) /* 492 */ jpayne@69: #define Tcl_ChannelWideSeekProc \ jpayne@69: (tclStubsPtr->tcl_ChannelWideSeekProc) /* 493 */ jpayne@69: #define Tcl_DictObjPut \ jpayne@69: (tclStubsPtr->tcl_DictObjPut) /* 494 */ jpayne@69: #define Tcl_DictObjGet \ jpayne@69: (tclStubsPtr->tcl_DictObjGet) /* 495 */ jpayne@69: #define Tcl_DictObjRemove \ jpayne@69: (tclStubsPtr->tcl_DictObjRemove) /* 496 */ jpayne@69: #define Tcl_DictObjSize \ jpayne@69: (tclStubsPtr->tcl_DictObjSize) /* 497 */ jpayne@69: #define Tcl_DictObjFirst \ jpayne@69: (tclStubsPtr->tcl_DictObjFirst) /* 498 */ jpayne@69: #define Tcl_DictObjNext \ jpayne@69: (tclStubsPtr->tcl_DictObjNext) /* 499 */ jpayne@69: #define Tcl_DictObjDone \ jpayne@69: (tclStubsPtr->tcl_DictObjDone) /* 500 */ jpayne@69: #define Tcl_DictObjPutKeyList \ jpayne@69: (tclStubsPtr->tcl_DictObjPutKeyList) /* 501 */ jpayne@69: #define Tcl_DictObjRemoveKeyList \ jpayne@69: (tclStubsPtr->tcl_DictObjRemoveKeyList) /* 502 */ jpayne@69: #define Tcl_NewDictObj \ jpayne@69: (tclStubsPtr->tcl_NewDictObj) /* 503 */ jpayne@69: #define Tcl_DbNewDictObj \ jpayne@69: (tclStubsPtr->tcl_DbNewDictObj) /* 504 */ jpayne@69: #define Tcl_RegisterConfig \ jpayne@69: (tclStubsPtr->tcl_RegisterConfig) /* 505 */ jpayne@69: #define Tcl_CreateNamespace \ jpayne@69: (tclStubsPtr->tcl_CreateNamespace) /* 506 */ jpayne@69: #define Tcl_DeleteNamespace \ jpayne@69: (tclStubsPtr->tcl_DeleteNamespace) /* 507 */ jpayne@69: #define Tcl_AppendExportList \ jpayne@69: (tclStubsPtr->tcl_AppendExportList) /* 508 */ jpayne@69: #define Tcl_Export \ jpayne@69: (tclStubsPtr->tcl_Export) /* 509 */ jpayne@69: #define Tcl_Import \ jpayne@69: (tclStubsPtr->tcl_Import) /* 510 */ jpayne@69: #define Tcl_ForgetImport \ jpayne@69: (tclStubsPtr->tcl_ForgetImport) /* 511 */ jpayne@69: #define Tcl_GetCurrentNamespace \ jpayne@69: (tclStubsPtr->tcl_GetCurrentNamespace) /* 512 */ jpayne@69: #define Tcl_GetGlobalNamespace \ jpayne@69: (tclStubsPtr->tcl_GetGlobalNamespace) /* 513 */ jpayne@69: #define Tcl_FindNamespace \ jpayne@69: (tclStubsPtr->tcl_FindNamespace) /* 514 */ jpayne@69: #define Tcl_FindCommand \ jpayne@69: (tclStubsPtr->tcl_FindCommand) /* 515 */ jpayne@69: #define Tcl_GetCommandFromObj \ jpayne@69: (tclStubsPtr->tcl_GetCommandFromObj) /* 516 */ jpayne@69: #define Tcl_GetCommandFullName \ jpayne@69: (tclStubsPtr->tcl_GetCommandFullName) /* 517 */ jpayne@69: #define Tcl_FSEvalFileEx \ jpayne@69: (tclStubsPtr->tcl_FSEvalFileEx) /* 518 */ jpayne@69: #define Tcl_SetExitProc \ jpayne@69: (tclStubsPtr->tcl_SetExitProc) /* 519 */ jpayne@69: #define Tcl_LimitAddHandler \ jpayne@69: (tclStubsPtr->tcl_LimitAddHandler) /* 520 */ jpayne@69: #define Tcl_LimitRemoveHandler \ jpayne@69: (tclStubsPtr->tcl_LimitRemoveHandler) /* 521 */ jpayne@69: #define Tcl_LimitReady \ jpayne@69: (tclStubsPtr->tcl_LimitReady) /* 522 */ jpayne@69: #define Tcl_LimitCheck \ jpayne@69: (tclStubsPtr->tcl_LimitCheck) /* 523 */ jpayne@69: #define Tcl_LimitExceeded \ jpayne@69: (tclStubsPtr->tcl_LimitExceeded) /* 524 */ jpayne@69: #define Tcl_LimitSetCommands \ jpayne@69: (tclStubsPtr->tcl_LimitSetCommands) /* 525 */ jpayne@69: #define Tcl_LimitSetTime \ jpayne@69: (tclStubsPtr->tcl_LimitSetTime) /* 526 */ jpayne@69: #define Tcl_LimitSetGranularity \ jpayne@69: (tclStubsPtr->tcl_LimitSetGranularity) /* 527 */ jpayne@69: #define Tcl_LimitTypeEnabled \ jpayne@69: (tclStubsPtr->tcl_LimitTypeEnabled) /* 528 */ jpayne@69: #define Tcl_LimitTypeExceeded \ jpayne@69: (tclStubsPtr->tcl_LimitTypeExceeded) /* 529 */ jpayne@69: #define Tcl_LimitTypeSet \ jpayne@69: (tclStubsPtr->tcl_LimitTypeSet) /* 530 */ jpayne@69: #define Tcl_LimitTypeReset \ jpayne@69: (tclStubsPtr->tcl_LimitTypeReset) /* 531 */ jpayne@69: #define Tcl_LimitGetCommands \ jpayne@69: (tclStubsPtr->tcl_LimitGetCommands) /* 532 */ jpayne@69: #define Tcl_LimitGetTime \ jpayne@69: (tclStubsPtr->tcl_LimitGetTime) /* 533 */ jpayne@69: #define Tcl_LimitGetGranularity \ jpayne@69: (tclStubsPtr->tcl_LimitGetGranularity) /* 534 */ jpayne@69: #define Tcl_SaveInterpState \ jpayne@69: (tclStubsPtr->tcl_SaveInterpState) /* 535 */ jpayne@69: #define Tcl_RestoreInterpState \ jpayne@69: (tclStubsPtr->tcl_RestoreInterpState) /* 536 */ jpayne@69: #define Tcl_DiscardInterpState \ jpayne@69: (tclStubsPtr->tcl_DiscardInterpState) /* 537 */ jpayne@69: #define Tcl_SetReturnOptions \ jpayne@69: (tclStubsPtr->tcl_SetReturnOptions) /* 538 */ jpayne@69: #define Tcl_GetReturnOptions \ jpayne@69: (tclStubsPtr->tcl_GetReturnOptions) /* 539 */ jpayne@69: #define Tcl_IsEnsemble \ jpayne@69: (tclStubsPtr->tcl_IsEnsemble) /* 540 */ jpayne@69: #define Tcl_CreateEnsemble \ jpayne@69: (tclStubsPtr->tcl_CreateEnsemble) /* 541 */ jpayne@69: #define Tcl_FindEnsemble \ jpayne@69: (tclStubsPtr->tcl_FindEnsemble) /* 542 */ jpayne@69: #define Tcl_SetEnsembleSubcommandList \ jpayne@69: (tclStubsPtr->tcl_SetEnsembleSubcommandList) /* 543 */ jpayne@69: #define Tcl_SetEnsembleMappingDict \ jpayne@69: (tclStubsPtr->tcl_SetEnsembleMappingDict) /* 544 */ jpayne@69: #define Tcl_SetEnsembleUnknownHandler \ jpayne@69: (tclStubsPtr->tcl_SetEnsembleUnknownHandler) /* 545 */ jpayne@69: #define Tcl_SetEnsembleFlags \ jpayne@69: (tclStubsPtr->tcl_SetEnsembleFlags) /* 546 */ jpayne@69: #define Tcl_GetEnsembleSubcommandList \ jpayne@69: (tclStubsPtr->tcl_GetEnsembleSubcommandList) /* 547 */ jpayne@69: #define Tcl_GetEnsembleMappingDict \ jpayne@69: (tclStubsPtr->tcl_GetEnsembleMappingDict) /* 548 */ jpayne@69: #define Tcl_GetEnsembleUnknownHandler \ jpayne@69: (tclStubsPtr->tcl_GetEnsembleUnknownHandler) /* 549 */ jpayne@69: #define Tcl_GetEnsembleFlags \ jpayne@69: (tclStubsPtr->tcl_GetEnsembleFlags) /* 550 */ jpayne@69: #define Tcl_GetEnsembleNamespace \ jpayne@69: (tclStubsPtr->tcl_GetEnsembleNamespace) /* 551 */ jpayne@69: #define Tcl_SetTimeProc \ jpayne@69: (tclStubsPtr->tcl_SetTimeProc) /* 552 */ jpayne@69: #define Tcl_QueryTimeProc \ jpayne@69: (tclStubsPtr->tcl_QueryTimeProc) /* 553 */ jpayne@69: #define Tcl_ChannelThreadActionProc \ jpayne@69: (tclStubsPtr->tcl_ChannelThreadActionProc) /* 554 */ jpayne@69: #define Tcl_NewBignumObj \ jpayne@69: (tclStubsPtr->tcl_NewBignumObj) /* 555 */ jpayne@69: #define Tcl_DbNewBignumObj \ jpayne@69: (tclStubsPtr->tcl_DbNewBignumObj) /* 556 */ jpayne@69: #define Tcl_SetBignumObj \ jpayne@69: (tclStubsPtr->tcl_SetBignumObj) /* 557 */ jpayne@69: #define Tcl_GetBignumFromObj \ jpayne@69: (tclStubsPtr->tcl_GetBignumFromObj) /* 558 */ jpayne@69: #define Tcl_TakeBignumFromObj \ jpayne@69: (tclStubsPtr->tcl_TakeBignumFromObj) /* 559 */ jpayne@69: #define Tcl_TruncateChannel \ jpayne@69: (tclStubsPtr->tcl_TruncateChannel) /* 560 */ jpayne@69: #define Tcl_ChannelTruncateProc \ jpayne@69: (tclStubsPtr->tcl_ChannelTruncateProc) /* 561 */ jpayne@69: #define Tcl_SetChannelErrorInterp \ jpayne@69: (tclStubsPtr->tcl_SetChannelErrorInterp) /* 562 */ jpayne@69: #define Tcl_GetChannelErrorInterp \ jpayne@69: (tclStubsPtr->tcl_GetChannelErrorInterp) /* 563 */ jpayne@69: #define Tcl_SetChannelError \ jpayne@69: (tclStubsPtr->tcl_SetChannelError) /* 564 */ jpayne@69: #define Tcl_GetChannelError \ jpayne@69: (tclStubsPtr->tcl_GetChannelError) /* 565 */ jpayne@69: #define Tcl_InitBignumFromDouble \ jpayne@69: (tclStubsPtr->tcl_InitBignumFromDouble) /* 566 */ jpayne@69: #define Tcl_GetNamespaceUnknownHandler \ jpayne@69: (tclStubsPtr->tcl_GetNamespaceUnknownHandler) /* 567 */ jpayne@69: #define Tcl_SetNamespaceUnknownHandler \ jpayne@69: (tclStubsPtr->tcl_SetNamespaceUnknownHandler) /* 568 */ jpayne@69: #define Tcl_GetEncodingFromObj \ jpayne@69: (tclStubsPtr->tcl_GetEncodingFromObj) /* 569 */ jpayne@69: #define Tcl_GetEncodingSearchPath \ jpayne@69: (tclStubsPtr->tcl_GetEncodingSearchPath) /* 570 */ jpayne@69: #define Tcl_SetEncodingSearchPath \ jpayne@69: (tclStubsPtr->tcl_SetEncodingSearchPath) /* 571 */ jpayne@69: #define Tcl_GetEncodingNameFromEnvironment \ jpayne@69: (tclStubsPtr->tcl_GetEncodingNameFromEnvironment) /* 572 */ jpayne@69: #define Tcl_PkgRequireProc \ jpayne@69: (tclStubsPtr->tcl_PkgRequireProc) /* 573 */ jpayne@69: #define Tcl_AppendObjToErrorInfo \ jpayne@69: (tclStubsPtr->tcl_AppendObjToErrorInfo) /* 574 */ jpayne@69: #define Tcl_AppendLimitedToObj \ jpayne@69: (tclStubsPtr->tcl_AppendLimitedToObj) /* 575 */ jpayne@69: #define Tcl_Format \ jpayne@69: (tclStubsPtr->tcl_Format) /* 576 */ jpayne@69: #define Tcl_AppendFormatToObj \ jpayne@69: (tclStubsPtr->tcl_AppendFormatToObj) /* 577 */ jpayne@69: #define Tcl_ObjPrintf \ jpayne@69: (tclStubsPtr->tcl_ObjPrintf) /* 578 */ jpayne@69: #define Tcl_AppendPrintfToObj \ jpayne@69: (tclStubsPtr->tcl_AppendPrintfToObj) /* 579 */ jpayne@69: #define Tcl_CancelEval \ jpayne@69: (tclStubsPtr->tcl_CancelEval) /* 580 */ jpayne@69: #define Tcl_Canceled \ jpayne@69: (tclStubsPtr->tcl_Canceled) /* 581 */ jpayne@69: #define Tcl_CreatePipe \ jpayne@69: (tclStubsPtr->tcl_CreatePipe) /* 582 */ jpayne@69: #define Tcl_NRCreateCommand \ jpayne@69: (tclStubsPtr->tcl_NRCreateCommand) /* 583 */ jpayne@69: #define Tcl_NREvalObj \ jpayne@69: (tclStubsPtr->tcl_NREvalObj) /* 584 */ jpayne@69: #define Tcl_NREvalObjv \ jpayne@69: (tclStubsPtr->tcl_NREvalObjv) /* 585 */ jpayne@69: #define Tcl_NRCmdSwap \ jpayne@69: (tclStubsPtr->tcl_NRCmdSwap) /* 586 */ jpayne@69: #define Tcl_NRAddCallback \ jpayne@69: (tclStubsPtr->tcl_NRAddCallback) /* 587 */ jpayne@69: #define Tcl_NRCallObjProc \ jpayne@69: (tclStubsPtr->tcl_NRCallObjProc) /* 588 */ jpayne@69: #define Tcl_GetFSDeviceFromStat \ jpayne@69: (tclStubsPtr->tcl_GetFSDeviceFromStat) /* 589 */ jpayne@69: #define Tcl_GetFSInodeFromStat \ jpayne@69: (tclStubsPtr->tcl_GetFSInodeFromStat) /* 590 */ jpayne@69: #define Tcl_GetModeFromStat \ jpayne@69: (tclStubsPtr->tcl_GetModeFromStat) /* 591 */ jpayne@69: #define Tcl_GetLinkCountFromStat \ jpayne@69: (tclStubsPtr->tcl_GetLinkCountFromStat) /* 592 */ jpayne@69: #define Tcl_GetUserIdFromStat \ jpayne@69: (tclStubsPtr->tcl_GetUserIdFromStat) /* 593 */ jpayne@69: #define Tcl_GetGroupIdFromStat \ jpayne@69: (tclStubsPtr->tcl_GetGroupIdFromStat) /* 594 */ jpayne@69: #define Tcl_GetDeviceTypeFromStat \ jpayne@69: (tclStubsPtr->tcl_GetDeviceTypeFromStat) /* 595 */ jpayne@69: #define Tcl_GetAccessTimeFromStat \ jpayne@69: (tclStubsPtr->tcl_GetAccessTimeFromStat) /* 596 */ jpayne@69: #define Tcl_GetModificationTimeFromStat \ jpayne@69: (tclStubsPtr->tcl_GetModificationTimeFromStat) /* 597 */ jpayne@69: #define Tcl_GetChangeTimeFromStat \ jpayne@69: (tclStubsPtr->tcl_GetChangeTimeFromStat) /* 598 */ jpayne@69: #define Tcl_GetSizeFromStat \ jpayne@69: (tclStubsPtr->tcl_GetSizeFromStat) /* 599 */ jpayne@69: #define Tcl_GetBlocksFromStat \ jpayne@69: (tclStubsPtr->tcl_GetBlocksFromStat) /* 600 */ jpayne@69: #define Tcl_GetBlockSizeFromStat \ jpayne@69: (tclStubsPtr->tcl_GetBlockSizeFromStat) /* 601 */ jpayne@69: #define Tcl_SetEnsembleParameterList \ jpayne@69: (tclStubsPtr->tcl_SetEnsembleParameterList) /* 602 */ jpayne@69: #define Tcl_GetEnsembleParameterList \ jpayne@69: (tclStubsPtr->tcl_GetEnsembleParameterList) /* 603 */ jpayne@69: #define Tcl_ParseArgsObjv \ jpayne@69: (tclStubsPtr->tcl_ParseArgsObjv) /* 604 */ jpayne@69: #define Tcl_GetErrorLine \ jpayne@69: (tclStubsPtr->tcl_GetErrorLine) /* 605 */ jpayne@69: #define Tcl_SetErrorLine \ jpayne@69: (tclStubsPtr->tcl_SetErrorLine) /* 606 */ jpayne@69: #define Tcl_TransferResult \ jpayne@69: (tclStubsPtr->tcl_TransferResult) /* 607 */ jpayne@69: #define Tcl_InterpActive \ jpayne@69: (tclStubsPtr->tcl_InterpActive) /* 608 */ jpayne@69: #define Tcl_BackgroundException \ jpayne@69: (tclStubsPtr->tcl_BackgroundException) /* 609 */ jpayne@69: #define Tcl_ZlibDeflate \ jpayne@69: (tclStubsPtr->tcl_ZlibDeflate) /* 610 */ jpayne@69: #define Tcl_ZlibInflate \ jpayne@69: (tclStubsPtr->tcl_ZlibInflate) /* 611 */ jpayne@69: #define Tcl_ZlibCRC32 \ jpayne@69: (tclStubsPtr->tcl_ZlibCRC32) /* 612 */ jpayne@69: #define Tcl_ZlibAdler32 \ jpayne@69: (tclStubsPtr->tcl_ZlibAdler32) /* 613 */ jpayne@69: #define Tcl_ZlibStreamInit \ jpayne@69: (tclStubsPtr->tcl_ZlibStreamInit) /* 614 */ jpayne@69: #define Tcl_ZlibStreamGetCommandName \ jpayne@69: (tclStubsPtr->tcl_ZlibStreamGetCommandName) /* 615 */ jpayne@69: #define Tcl_ZlibStreamEof \ jpayne@69: (tclStubsPtr->tcl_ZlibStreamEof) /* 616 */ jpayne@69: #define Tcl_ZlibStreamChecksum \ jpayne@69: (tclStubsPtr->tcl_ZlibStreamChecksum) /* 617 */ jpayne@69: #define Tcl_ZlibStreamPut \ jpayne@69: (tclStubsPtr->tcl_ZlibStreamPut) /* 618 */ jpayne@69: #define Tcl_ZlibStreamGet \ jpayne@69: (tclStubsPtr->tcl_ZlibStreamGet) /* 619 */ jpayne@69: #define Tcl_ZlibStreamClose \ jpayne@69: (tclStubsPtr->tcl_ZlibStreamClose) /* 620 */ jpayne@69: #define Tcl_ZlibStreamReset \ jpayne@69: (tclStubsPtr->tcl_ZlibStreamReset) /* 621 */ jpayne@69: #define Tcl_SetStartupScript \ jpayne@69: (tclStubsPtr->tcl_SetStartupScript) /* 622 */ jpayne@69: #define Tcl_GetStartupScript \ jpayne@69: (tclStubsPtr->tcl_GetStartupScript) /* 623 */ jpayne@69: #define Tcl_CloseEx \ jpayne@69: (tclStubsPtr->tcl_CloseEx) /* 624 */ jpayne@69: #define Tcl_NRExprObj \ jpayne@69: (tclStubsPtr->tcl_NRExprObj) /* 625 */ jpayne@69: #define Tcl_NRSubstObj \ jpayne@69: (tclStubsPtr->tcl_NRSubstObj) /* 626 */ jpayne@69: #define Tcl_LoadFile \ jpayne@69: (tclStubsPtr->tcl_LoadFile) /* 627 */ jpayne@69: #define Tcl_FindSymbol \ jpayne@69: (tclStubsPtr->tcl_FindSymbol) /* 628 */ jpayne@69: #define Tcl_FSUnloadFile \ jpayne@69: (tclStubsPtr->tcl_FSUnloadFile) /* 629 */ jpayne@69: #define Tcl_ZlibStreamSetCompressionDictionary \ jpayne@69: (tclStubsPtr->tcl_ZlibStreamSetCompressionDictionary) /* 630 */ jpayne@69: /* Slot 631 is reserved */ jpayne@69: /* Slot 632 is reserved */ jpayne@69: /* Slot 633 is reserved */ jpayne@69: /* Slot 634 is reserved */ jpayne@69: /* Slot 635 is reserved */ jpayne@69: /* Slot 636 is reserved */ jpayne@69: /* Slot 637 is reserved */ jpayne@69: /* Slot 638 is reserved */ jpayne@69: /* Slot 639 is reserved */ jpayne@69: /* Slot 640 is reserved */ jpayne@69: /* Slot 641 is reserved */ jpayne@69: /* Slot 642 is reserved */ jpayne@69: /* Slot 643 is reserved */ jpayne@69: /* Slot 644 is reserved */ jpayne@69: /* Slot 645 is reserved */ jpayne@69: /* Slot 646 is reserved */ jpayne@69: /* Slot 647 is reserved */ jpayne@69: /* Slot 648 is reserved */ jpayne@69: /* Slot 649 is reserved */ jpayne@69: /* Slot 650 is reserved */ jpayne@69: /* Slot 651 is reserved */ jpayne@69: /* Slot 652 is reserved */ jpayne@69: /* Slot 653 is reserved */ jpayne@69: /* Slot 654 is reserved */ jpayne@69: /* Slot 655 is reserved */ jpayne@69: /* Slot 656 is reserved */ jpayne@69: /* Slot 657 is reserved */ jpayne@69: /* Slot 658 is reserved */ jpayne@69: /* Slot 659 is reserved */ jpayne@69: /* Slot 660 is reserved */ jpayne@69: /* Slot 661 is reserved */ jpayne@69: /* Slot 662 is reserved */ jpayne@69: /* Slot 663 is reserved */ jpayne@69: /* Slot 664 is reserved */ jpayne@69: /* Slot 665 is reserved */ jpayne@69: /* Slot 666 is reserved */ jpayne@69: /* Slot 667 is reserved */ jpayne@69: /* Slot 668 is reserved */ jpayne@69: /* Slot 669 is reserved */ jpayne@69: /* Slot 670 is reserved */ jpayne@69: /* Slot 671 is reserved */ jpayne@69: /* Slot 672 is reserved */ jpayne@69: /* Slot 673 is reserved */ jpayne@69: /* Slot 674 is reserved */ jpayne@69: /* Slot 675 is reserved */ jpayne@69: /* Slot 676 is reserved */ jpayne@69: /* Slot 677 is reserved */ jpayne@69: /* Slot 678 is reserved */ jpayne@69: /* Slot 679 is reserved */ jpayne@69: /* Slot 680 is reserved */ jpayne@69: /* Slot 681 is reserved */ jpayne@69: /* Slot 682 is reserved */ jpayne@69: #define TclUnusedStubEntry \ jpayne@69: (tclStubsPtr->tclUnusedStubEntry) /* 683 */ jpayne@69: jpayne@69: #endif /* defined(USE_TCL_STUBS) */ jpayne@69: jpayne@69: /* !END!: Do not edit above this line. */ jpayne@69: jpayne@69: #undef TclUnusedStubEntry jpayne@69: jpayne@69: #if defined(USE_TCL_STUBS) jpayne@69: # undef Tcl_CreateInterp jpayne@69: # undef Tcl_FindExecutable jpayne@69: # undef Tcl_GetStringResult jpayne@69: # undef Tcl_Init jpayne@69: # undef Tcl_SetPanicProc jpayne@69: # undef Tcl_SetVar jpayne@69: # undef Tcl_ObjSetVar2 jpayne@69: # undef Tcl_StaticPackage jpayne@69: # define Tcl_CreateInterp() (tclStubsPtr->tcl_CreateInterp()) jpayne@69: # define Tcl_GetStringResult(interp) (tclStubsPtr->tcl_GetStringResult(interp)) jpayne@69: # define Tcl_Init(interp) (tclStubsPtr->tcl_Init(interp)) jpayne@69: # define Tcl_SetPanicProc(proc) (tclStubsPtr->tcl_SetPanicProc(proc)) jpayne@69: # define Tcl_SetVar(interp, varName, newValue, flags) \ jpayne@69: (tclStubsPtr->tcl_SetVar(interp, varName, newValue, flags)) jpayne@69: # define Tcl_ObjSetVar2(interp, part1, part2, newValue, flags) \ jpayne@69: (tclStubsPtr->tcl_ObjSetVar2(interp, part1, part2, newValue, flags)) jpayne@69: #endif jpayne@69: jpayne@69: #if defined(_WIN32) && defined(UNICODE) jpayne@69: # define Tcl_FindExecutable(arg) ((Tcl_FindExecutable)((const char *)(arg))) jpayne@69: # define Tcl_MainEx Tcl_MainExW jpayne@69: EXTERN void Tcl_MainExW(int argc, wchar_t **argv, jpayne@69: Tcl_AppInitProc *appInitProc, Tcl_Interp *interp); jpayne@69: #endif jpayne@69: jpayne@69: #undef TCL_STORAGE_CLASS jpayne@69: #define TCL_STORAGE_CLASS DLLIMPORT jpayne@69: jpayne@69: #undef Tcl_SeekOld jpayne@69: #undef Tcl_TellOld jpayne@69: jpayne@69: #undef Tcl_PkgPresent jpayne@69: #define Tcl_PkgPresent(interp, name, version, exact) \ jpayne@69: Tcl_PkgPresentEx(interp, name, version, exact, NULL) jpayne@69: #undef Tcl_PkgProvide jpayne@69: #define Tcl_PkgProvide(interp, name, version) \ jpayne@69: Tcl_PkgProvideEx(interp, name, version, NULL) jpayne@69: #undef Tcl_PkgRequire jpayne@69: #define Tcl_PkgRequire(interp, name, version, exact) \ jpayne@69: Tcl_PkgRequireEx(interp, name, version, exact, NULL) jpayne@69: #undef Tcl_GetIndexFromObj jpayne@69: #define Tcl_GetIndexFromObj(interp, objPtr, tablePtr, msg, flags, indexPtr) \ jpayne@69: Tcl_GetIndexFromObjStruct(interp, objPtr, tablePtr, \ jpayne@69: sizeof(char *), msg, flags, indexPtr) jpayne@69: #undef Tcl_NewBooleanObj jpayne@69: #define Tcl_NewBooleanObj(intValue) \ jpayne@69: Tcl_NewIntObj((intValue)!=0) jpayne@69: #undef Tcl_DbNewBooleanObj jpayne@69: #define Tcl_DbNewBooleanObj(intValue, file, line) \ jpayne@69: Tcl_DbNewLongObj((intValue)!=0, file, line) jpayne@69: #undef Tcl_SetBooleanObj jpayne@69: #define Tcl_SetBooleanObj(objPtr, intValue) \ jpayne@69: Tcl_SetIntObj((objPtr), (intValue)!=0) jpayne@69: #undef Tcl_SetVar jpayne@69: #define Tcl_SetVar(interp, varName, newValue, flags) \ jpayne@69: Tcl_SetVar2(interp, varName, NULL, newValue, flags) jpayne@69: #undef Tcl_UnsetVar jpayne@69: #define Tcl_UnsetVar(interp, varName, flags) \ jpayne@69: Tcl_UnsetVar2(interp, varName, NULL, flags) jpayne@69: #undef Tcl_GetVar jpayne@69: #define Tcl_GetVar(interp, varName, flags) \ jpayne@69: Tcl_GetVar2(interp, varName, NULL, flags) jpayne@69: #undef Tcl_TraceVar jpayne@69: #define Tcl_TraceVar(interp, varName, flags, proc, clientData) \ jpayne@69: Tcl_TraceVar2(interp, varName, NULL, flags, proc, clientData) jpayne@69: #undef Tcl_UntraceVar jpayne@69: #define Tcl_UntraceVar(interp, varName, flags, proc, clientData) \ jpayne@69: Tcl_UntraceVar2(interp, varName, NULL, flags, proc, clientData) jpayne@69: #undef Tcl_VarTraceInfo jpayne@69: #define Tcl_VarTraceInfo(interp, varName, flags, proc, prevClientData) \ jpayne@69: Tcl_VarTraceInfo2(interp, varName, NULL, flags, proc, prevClientData) jpayne@69: #undef Tcl_UpVar jpayne@69: #define Tcl_UpVar(interp, frameName, varName, localName, flags) \ jpayne@69: Tcl_UpVar2(interp, frameName, varName, NULL, localName, flags) jpayne@69: jpayne@69: #if defined(USE_TCL_STUBS) jpayne@69: # if defined(_WIN32) && defined(_WIN64) jpayne@69: # undef Tcl_GetTime jpayne@69: /* Handle Win64 tk.dll being loaded in Cygwin64. */ jpayne@69: # define Tcl_GetTime(t) \ jpayne@69: do { \ jpayne@69: union { \ jpayne@69: Tcl_Time now; \ jpayne@69: __int64 reserved; \ jpayne@69: } _t; \ jpayne@69: _t.reserved = -1; \ jpayne@69: tclStubsPtr->tcl_GetTime((&_t.now)); \ jpayne@69: if (_t.reserved != -1) { \ jpayne@69: _t.now.usec = _t.reserved; \ jpayne@69: } \ jpayne@69: *(t) = _t.now; \ jpayne@69: } while (0) jpayne@69: # endif jpayne@69: # if defined(__CYGWIN__) && defined(TCL_WIDE_INT_IS_LONG) jpayne@69: /* On Cygwin64, long is 64-bit while on Win64 long is 32-bit. Therefore jpayne@69: * we have to make sure that all stub entries on Cygwin64 follow the jpayne@69: * Win64 signature. Cygwin64 stubbed extensions cannot use those stub jpayne@69: * entries any more, they should use the 64-bit alternatives where jpayne@69: * possible. Tcl 9 must find a better solution, but that cannot be done jpayne@69: * without introducing a binary incompatibility. jpayne@69: */ jpayne@69: # undef Tcl_DbNewLongObj jpayne@69: # undef Tcl_GetLongFromObj jpayne@69: # undef Tcl_NewLongObj jpayne@69: # undef Tcl_SetLongObj jpayne@69: # undef Tcl_ExprLong jpayne@69: # undef Tcl_ExprLongObj jpayne@69: # undef Tcl_UniCharNcmp jpayne@69: # undef Tcl_UtfNcmp jpayne@69: # undef Tcl_UtfNcasecmp jpayne@69: # undef Tcl_UniCharNcasecmp jpayne@69: # define Tcl_DbNewLongObj ((Tcl_Obj*(*)(long,const char*,int))Tcl_DbNewWideIntObj) jpayne@69: # define Tcl_GetLongFromObj ((int(*)(Tcl_Interp*,Tcl_Obj*,long*))Tcl_GetWideIntFromObj) jpayne@69: # define Tcl_NewLongObj ((Tcl_Obj*(*)(long))Tcl_NewWideIntObj) jpayne@69: # define Tcl_SetLongObj ((void(*)(Tcl_Obj*,long))Tcl_SetWideIntObj) jpayne@69: # define Tcl_ExprLong TclExprLong jpayne@69: static inline int TclExprLong(Tcl_Interp *interp, const char *string, long *ptr){ jpayne@69: int intValue; jpayne@69: int result = tclStubsPtr->tcl_ExprLong(interp, string, (long *)&intValue); jpayne@69: if (result == TCL_OK) *ptr = (long)intValue; jpayne@69: return result; jpayne@69: } jpayne@69: # define Tcl_ExprLongObj TclExprLongObj jpayne@69: static inline int TclExprLongObj(Tcl_Interp *interp, Tcl_Obj *obj, long *ptr){ jpayne@69: int intValue; jpayne@69: int result = tclStubsPtr->tcl_ExprLongObj(interp, obj, (long *)&intValue); jpayne@69: if (result == TCL_OK) *ptr = (long)intValue; jpayne@69: return result; jpayne@69: } jpayne@69: # define Tcl_UniCharNcmp(ucs,uct,n) \ jpayne@69: ((int(*)(const Tcl_UniChar*,const Tcl_UniChar*,unsigned int))tclStubsPtr->tcl_UniCharNcmp)(ucs,uct,(unsigned int)(n)) jpayne@69: # define Tcl_UtfNcmp(s1,s2,n) \ jpayne@69: ((int(*)(const char*,const char*,unsigned int))tclStubsPtr->tcl_UtfNcmp)(s1,s2,(unsigned int)(n)) jpayne@69: # define Tcl_UtfNcasecmp(s1,s2,n) \ jpayne@69: ((int(*)(const char*,const char*,unsigned int))tclStubsPtr->tcl_UtfNcasecmp)(s1,s2,(unsigned int)(n)) jpayne@69: # define Tcl_UniCharNcasecmp(ucs,uct,n) \ jpayne@69: ((int(*)(const Tcl_UniChar*,const Tcl_UniChar*,unsigned int))tclStubsPtr->tcl_UniCharNcasecmp)(ucs,uct,(unsigned int)(n)) jpayne@69: # endif jpayne@69: #endif jpayne@69: jpayne@69: /* jpayne@69: * Deprecated Tcl procedures: jpayne@69: */ jpayne@69: jpayne@69: #undef Tcl_EvalObj jpayne@69: #define Tcl_EvalObj(interp,objPtr) \ jpayne@69: Tcl_EvalObjEx((interp),(objPtr),0) jpayne@69: #undef Tcl_GlobalEvalObj jpayne@69: #define Tcl_GlobalEvalObj(interp,objPtr) \ jpayne@69: Tcl_EvalObjEx((interp),(objPtr),TCL_EVAL_GLOBAL) jpayne@69: #define Tcl_CreateChild Tcl_CreateSlave jpayne@69: #define Tcl_GetChild Tcl_GetSlave jpayne@69: #define Tcl_GetParent Tcl_GetMaster jpayne@69: jpayne@69: #endif /* _TCLDECLS */