1 | /* |
---|
2 | * tclStubInit.c -- |
---|
3 | * |
---|
4 | * This file contains the initializers for the Tcl stub vectors. |
---|
5 | * |
---|
6 | * Copyright (c) 1998-1999 by Scriptics Corporation. |
---|
7 | * |
---|
8 | * See the file "license.terms" for information on usage and redistribution |
---|
9 | * of this file, and for a DISCLAIMER OF ALL WARRANTIES. |
---|
10 | * |
---|
11 | * RCS: @(#) $Id: tclStubInit.c,v 1.150 2008/01/23 17:31:42 dgp Exp $ |
---|
12 | */ |
---|
13 | |
---|
14 | #include "tclInt.h" |
---|
15 | #include "tommath.h" |
---|
16 | |
---|
17 | /* |
---|
18 | * Remove macros that will interfere with the definitions below. |
---|
19 | */ |
---|
20 | |
---|
21 | #undef Tcl_Alloc |
---|
22 | #undef Tcl_Free |
---|
23 | #undef Tcl_Realloc |
---|
24 | #undef Tcl_NewBooleanObj |
---|
25 | #undef Tcl_NewByteArrayObj |
---|
26 | #undef Tcl_NewDoubleObj |
---|
27 | #undef Tcl_NewIntObj |
---|
28 | #undef Tcl_NewListObj |
---|
29 | #undef Tcl_NewLongObj |
---|
30 | #undef Tcl_NewObj |
---|
31 | #undef Tcl_NewStringObj |
---|
32 | #undef Tcl_DumpActiveMemory |
---|
33 | #undef Tcl_ValidateAllMemory |
---|
34 | #undef Tcl_FindHashEntry |
---|
35 | #undef Tcl_CreateHashEntry |
---|
36 | |
---|
37 | /* |
---|
38 | * Keep a record of the original Notifier procedures, created in the |
---|
39 | * same compilation unit as the stub tables so we can later do reliable, |
---|
40 | * portable comparisons to see whether a Tcl_SetNotifier() call swapped |
---|
41 | * new routines into the stub table. |
---|
42 | */ |
---|
43 | |
---|
44 | Tcl_NotifierProcs tclOriginalNotifier = { |
---|
45 | Tcl_SetTimer, |
---|
46 | Tcl_WaitForEvent, |
---|
47 | #if !defined(__WIN32__) /* UNIX */ |
---|
48 | Tcl_CreateFileHandler, |
---|
49 | Tcl_DeleteFileHandler, |
---|
50 | #else |
---|
51 | NULL, |
---|
52 | NULL, |
---|
53 | #endif |
---|
54 | NULL, |
---|
55 | NULL, |
---|
56 | NULL, |
---|
57 | NULL |
---|
58 | }; |
---|
59 | |
---|
60 | MODULE_SCOPE TclIntStubs tclIntStubs; |
---|
61 | MODULE_SCOPE TclIntPlatStubs tclIntPlatStubs; |
---|
62 | MODULE_SCOPE TclPlatStubs tclPlatStubs; |
---|
63 | MODULE_SCOPE TclStubs tclStubs; |
---|
64 | MODULE_SCOPE TclTomMathStubs tclTomMathStubs; |
---|
65 | |
---|
66 | /* |
---|
67 | * WARNING: The contents of this file is automatically generated by the |
---|
68 | * tools/genStubs.tcl script. Any modifications to the function declarations |
---|
69 | * below should be made in the generic/tcl.decls script. |
---|
70 | */ |
---|
71 | |
---|
72 | /* !BEGIN!: Do not edit below this line. */ |
---|
73 | |
---|
74 | TclIntStubs tclIntStubs = { |
---|
75 | TCL_STUB_MAGIC, |
---|
76 | NULL, |
---|
77 | NULL, /* 0 */ |
---|
78 | NULL, /* 1 */ |
---|
79 | NULL, /* 2 */ |
---|
80 | TclAllocateFreeObjects, /* 3 */ |
---|
81 | NULL, /* 4 */ |
---|
82 | #if !defined(__WIN32__) && !defined(MAC_OSX_TCL) /* UNIX */ |
---|
83 | TclCleanupChildren, /* 5 */ |
---|
84 | #endif /* UNIX */ |
---|
85 | #ifdef __WIN32__ /* WIN */ |
---|
86 | TclCleanupChildren, /* 5 */ |
---|
87 | #endif /* WIN */ |
---|
88 | #ifdef MAC_OSX_TCL /* MACOSX */ |
---|
89 | TclCleanupChildren, /* 5 */ |
---|
90 | #endif /* MACOSX */ |
---|
91 | TclCleanupCommand, /* 6 */ |
---|
92 | TclCopyAndCollapse, /* 7 */ |
---|
93 | TclCopyChannel, /* 8 */ |
---|
94 | #if !defined(__WIN32__) && !defined(MAC_OSX_TCL) /* UNIX */ |
---|
95 | TclCreatePipeline, /* 9 */ |
---|
96 | #endif /* UNIX */ |
---|
97 | #ifdef __WIN32__ /* WIN */ |
---|
98 | TclCreatePipeline, /* 9 */ |
---|
99 | #endif /* WIN */ |
---|
100 | #ifdef MAC_OSX_TCL /* MACOSX */ |
---|
101 | TclCreatePipeline, /* 9 */ |
---|
102 | #endif /* MACOSX */ |
---|
103 | TclCreateProc, /* 10 */ |
---|
104 | TclDeleteCompiledLocalVars, /* 11 */ |
---|
105 | TclDeleteVars, /* 12 */ |
---|
106 | NULL, /* 13 */ |
---|
107 | TclDumpMemoryInfo, /* 14 */ |
---|
108 | NULL, /* 15 */ |
---|
109 | TclExprFloatError, /* 16 */ |
---|
110 | NULL, /* 17 */ |
---|
111 | NULL, /* 18 */ |
---|
112 | NULL, /* 19 */ |
---|
113 | NULL, /* 20 */ |
---|
114 | NULL, /* 21 */ |
---|
115 | TclFindElement, /* 22 */ |
---|
116 | TclFindProc, /* 23 */ |
---|
117 | NULL, /* 24 */ |
---|
118 | TclFreePackageInfo, /* 25 */ |
---|
119 | NULL, /* 26 */ |
---|
120 | NULL, /* 27 */ |
---|
121 | TclpGetDefaultStdChannel, /* 28 */ |
---|
122 | NULL, /* 29 */ |
---|
123 | NULL, /* 30 */ |
---|
124 | TclGetExtension, /* 31 */ |
---|
125 | TclGetFrame, /* 32 */ |
---|
126 | NULL, /* 33 */ |
---|
127 | TclGetIntForIndex, /* 34 */ |
---|
128 | NULL, /* 35 */ |
---|
129 | TclGetLong, /* 36 */ |
---|
130 | TclGetLoadedPackages, /* 37 */ |
---|
131 | TclGetNamespaceForQualName, /* 38 */ |
---|
132 | TclGetObjInterpProc, /* 39 */ |
---|
133 | TclGetOpenMode, /* 40 */ |
---|
134 | TclGetOriginalCommand, /* 41 */ |
---|
135 | TclpGetUserHome, /* 42 */ |
---|
136 | NULL, /* 43 */ |
---|
137 | TclGuessPackageName, /* 44 */ |
---|
138 | TclHideUnsafeCommands, /* 45 */ |
---|
139 | TclInExit, /* 46 */ |
---|
140 | NULL, /* 47 */ |
---|
141 | NULL, /* 48 */ |
---|
142 | NULL, /* 49 */ |
---|
143 | TclInitCompiledLocals, /* 50 */ |
---|
144 | TclInterpInit, /* 51 */ |
---|
145 | NULL, /* 52 */ |
---|
146 | TclInvokeObjectCommand, /* 53 */ |
---|
147 | TclInvokeStringCommand, /* 54 */ |
---|
148 | TclIsProc, /* 55 */ |
---|
149 | NULL, /* 56 */ |
---|
150 | NULL, /* 57 */ |
---|
151 | TclLookupVar, /* 58 */ |
---|
152 | NULL, /* 59 */ |
---|
153 | TclNeedSpace, /* 60 */ |
---|
154 | TclNewProcBodyObj, /* 61 */ |
---|
155 | TclObjCommandComplete, /* 62 */ |
---|
156 | TclObjInterpProc, /* 63 */ |
---|
157 | TclObjInvoke, /* 64 */ |
---|
158 | NULL, /* 65 */ |
---|
159 | NULL, /* 66 */ |
---|
160 | NULL, /* 67 */ |
---|
161 | NULL, /* 68 */ |
---|
162 | TclpAlloc, /* 69 */ |
---|
163 | NULL, /* 70 */ |
---|
164 | NULL, /* 71 */ |
---|
165 | NULL, /* 72 */ |
---|
166 | NULL, /* 73 */ |
---|
167 | TclpFree, /* 74 */ |
---|
168 | TclpGetClicks, /* 75 */ |
---|
169 | TclpGetSeconds, /* 76 */ |
---|
170 | TclpGetTime, /* 77 */ |
---|
171 | TclpGetTimeZone, /* 78 */ |
---|
172 | NULL, /* 79 */ |
---|
173 | NULL, /* 80 */ |
---|
174 | TclpRealloc, /* 81 */ |
---|
175 | NULL, /* 82 */ |
---|
176 | NULL, /* 83 */ |
---|
177 | NULL, /* 84 */ |
---|
178 | NULL, /* 85 */ |
---|
179 | NULL, /* 86 */ |
---|
180 | NULL, /* 87 */ |
---|
181 | TclPrecTraceProc, /* 88 */ |
---|
182 | TclPreventAliasLoop, /* 89 */ |
---|
183 | NULL, /* 90 */ |
---|
184 | TclProcCleanupProc, /* 91 */ |
---|
185 | TclProcCompileProc, /* 92 */ |
---|
186 | TclProcDeleteProc, /* 93 */ |
---|
187 | NULL, /* 94 */ |
---|
188 | NULL, /* 95 */ |
---|
189 | TclRenameCommand, /* 96 */ |
---|
190 | TclResetShadowedCmdRefs, /* 97 */ |
---|
191 | TclServiceIdle, /* 98 */ |
---|
192 | NULL, /* 99 */ |
---|
193 | NULL, /* 100 */ |
---|
194 | TclSetPreInitScript, /* 101 */ |
---|
195 | TclSetupEnv, /* 102 */ |
---|
196 | TclSockGetPort, /* 103 */ |
---|
197 | #if !defined(__WIN32__) && !defined(MAC_OSX_TCL) /* UNIX */ |
---|
198 | TclSockMinimumBuffers, /* 104 */ |
---|
199 | #endif /* UNIX */ |
---|
200 | #ifdef __WIN32__ /* WIN */ |
---|
201 | TclSockMinimumBuffers, /* 104 */ |
---|
202 | #endif /* WIN */ |
---|
203 | #ifdef MAC_OSX_TCL /* MACOSX */ |
---|
204 | TclSockMinimumBuffers, /* 104 */ |
---|
205 | #endif /* MACOSX */ |
---|
206 | NULL, /* 105 */ |
---|
207 | NULL, /* 106 */ |
---|
208 | NULL, /* 107 */ |
---|
209 | TclTeardownNamespace, /* 108 */ |
---|
210 | TclUpdateReturnInfo, /* 109 */ |
---|
211 | NULL, /* 110 */ |
---|
212 | Tcl_AddInterpResolvers, /* 111 */ |
---|
213 | Tcl_AppendExportList, /* 112 */ |
---|
214 | Tcl_CreateNamespace, /* 113 */ |
---|
215 | Tcl_DeleteNamespace, /* 114 */ |
---|
216 | Tcl_Export, /* 115 */ |
---|
217 | Tcl_FindCommand, /* 116 */ |
---|
218 | Tcl_FindNamespace, /* 117 */ |
---|
219 | Tcl_GetInterpResolvers, /* 118 */ |
---|
220 | Tcl_GetNamespaceResolvers, /* 119 */ |
---|
221 | Tcl_FindNamespaceVar, /* 120 */ |
---|
222 | Tcl_ForgetImport, /* 121 */ |
---|
223 | Tcl_GetCommandFromObj, /* 122 */ |
---|
224 | Tcl_GetCommandFullName, /* 123 */ |
---|
225 | Tcl_GetCurrentNamespace, /* 124 */ |
---|
226 | Tcl_GetGlobalNamespace, /* 125 */ |
---|
227 | Tcl_GetVariableFullName, /* 126 */ |
---|
228 | Tcl_Import, /* 127 */ |
---|
229 | Tcl_PopCallFrame, /* 128 */ |
---|
230 | Tcl_PushCallFrame, /* 129 */ |
---|
231 | Tcl_RemoveInterpResolvers, /* 130 */ |
---|
232 | Tcl_SetNamespaceResolvers, /* 131 */ |
---|
233 | TclpHasSockets, /* 132 */ |
---|
234 | TclpGetDate, /* 133 */ |
---|
235 | NULL, /* 134 */ |
---|
236 | NULL, /* 135 */ |
---|
237 | NULL, /* 136 */ |
---|
238 | NULL, /* 137 */ |
---|
239 | TclGetEnv, /* 138 */ |
---|
240 | NULL, /* 139 */ |
---|
241 | NULL, /* 140 */ |
---|
242 | TclpGetCwd, /* 141 */ |
---|
243 | TclSetByteCodeFromAny, /* 142 */ |
---|
244 | TclAddLiteralObj, /* 143 */ |
---|
245 | TclHideLiteral, /* 144 */ |
---|
246 | TclGetAuxDataType, /* 145 */ |
---|
247 | TclHandleCreate, /* 146 */ |
---|
248 | TclHandleFree, /* 147 */ |
---|
249 | TclHandlePreserve, /* 148 */ |
---|
250 | TclHandleRelease, /* 149 */ |
---|
251 | TclRegAbout, /* 150 */ |
---|
252 | TclRegExpRangeUniChar, /* 151 */ |
---|
253 | TclSetLibraryPath, /* 152 */ |
---|
254 | TclGetLibraryPath, /* 153 */ |
---|
255 | NULL, /* 154 */ |
---|
256 | NULL, /* 155 */ |
---|
257 | TclRegError, /* 156 */ |
---|
258 | TclVarTraceExists, /* 157 */ |
---|
259 | TclSetStartupScriptFileName, /* 158 */ |
---|
260 | TclGetStartupScriptFileName, /* 159 */ |
---|
261 | NULL, /* 160 */ |
---|
262 | TclChannelTransform, /* 161 */ |
---|
263 | TclChannelEventScriptInvoker, /* 162 */ |
---|
264 | TclGetInstructionTable, /* 163 */ |
---|
265 | TclExpandCodeArray, /* 164 */ |
---|
266 | TclpSetInitialEncodings, /* 165 */ |
---|
267 | TclListObjSetElement, /* 166 */ |
---|
268 | TclSetStartupScriptPath, /* 167 */ |
---|
269 | TclGetStartupScriptPath, /* 168 */ |
---|
270 | TclpUtfNcmp2, /* 169 */ |
---|
271 | TclCheckInterpTraces, /* 170 */ |
---|
272 | TclCheckExecutionTraces, /* 171 */ |
---|
273 | TclInThreadExit, /* 172 */ |
---|
274 | TclUniCharMatch, /* 173 */ |
---|
275 | NULL, /* 174 */ |
---|
276 | TclCallVarTraces, /* 175 */ |
---|
277 | TclCleanupVar, /* 176 */ |
---|
278 | TclVarErrMsg, /* 177 */ |
---|
279 | Tcl_SetStartupScript, /* 178 */ |
---|
280 | Tcl_GetStartupScript, /* 179 */ |
---|
281 | NULL, /* 180 */ |
---|
282 | NULL, /* 181 */ |
---|
283 | TclpLocaltime, /* 182 */ |
---|
284 | TclpGmtime, /* 183 */ |
---|
285 | NULL, /* 184 */ |
---|
286 | NULL, /* 185 */ |
---|
287 | NULL, /* 186 */ |
---|
288 | NULL, /* 187 */ |
---|
289 | NULL, /* 188 */ |
---|
290 | NULL, /* 189 */ |
---|
291 | NULL, /* 190 */ |
---|
292 | NULL, /* 191 */ |
---|
293 | NULL, /* 192 */ |
---|
294 | NULL, /* 193 */ |
---|
295 | NULL, /* 194 */ |
---|
296 | NULL, /* 195 */ |
---|
297 | NULL, /* 196 */ |
---|
298 | NULL, /* 197 */ |
---|
299 | TclObjGetFrame, /* 198 */ |
---|
300 | NULL, /* 199 */ |
---|
301 | TclpObjRemoveDirectory, /* 200 */ |
---|
302 | TclpObjCopyDirectory, /* 201 */ |
---|
303 | TclpObjCreateDirectory, /* 202 */ |
---|
304 | TclpObjDeleteFile, /* 203 */ |
---|
305 | TclpObjCopyFile, /* 204 */ |
---|
306 | TclpObjRenameFile, /* 205 */ |
---|
307 | TclpObjStat, /* 206 */ |
---|
308 | TclpObjAccess, /* 207 */ |
---|
309 | TclpOpenFileChannel, /* 208 */ |
---|
310 | NULL, /* 209 */ |
---|
311 | NULL, /* 210 */ |
---|
312 | NULL, /* 211 */ |
---|
313 | TclpFindExecutable, /* 212 */ |
---|
314 | TclGetObjNameOfExecutable, /* 213 */ |
---|
315 | TclSetObjNameOfExecutable, /* 214 */ |
---|
316 | TclStackAlloc, /* 215 */ |
---|
317 | TclStackFree, /* 216 */ |
---|
318 | TclPushStackFrame, /* 217 */ |
---|
319 | TclPopStackFrame, /* 218 */ |
---|
320 | NULL, /* 219 */ |
---|
321 | NULL, /* 220 */ |
---|
322 | NULL, /* 221 */ |
---|
323 | NULL, /* 222 */ |
---|
324 | NULL, /* 223 */ |
---|
325 | TclGetPlatform, /* 224 */ |
---|
326 | TclTraceDictPath, /* 225 */ |
---|
327 | TclObjBeingDeleted, /* 226 */ |
---|
328 | TclSetNsPath, /* 227 */ |
---|
329 | TclObjInterpProcCore, /* 228 */ |
---|
330 | TclPtrMakeUpvar, /* 229 */ |
---|
331 | TclObjLookupVar, /* 230 */ |
---|
332 | TclGetNamespaceFromObj, /* 231 */ |
---|
333 | TclEvalObjEx, /* 232 */ |
---|
334 | TclGetSrcInfoForPc, /* 233 */ |
---|
335 | TclVarHashCreateVar, /* 234 */ |
---|
336 | TclInitVarHashTable, /* 235 */ |
---|
337 | TclBackgroundException, /* 236 */ |
---|
338 | }; |
---|
339 | |
---|
340 | TclIntPlatStubs tclIntPlatStubs = { |
---|
341 | TCL_STUB_MAGIC, |
---|
342 | NULL, |
---|
343 | #if !defined(__WIN32__) && !defined(MAC_OSX_TCL) /* UNIX */ |
---|
344 | TclGetAndDetachPids, /* 0 */ |
---|
345 | TclpCloseFile, /* 1 */ |
---|
346 | TclpCreateCommandChannel, /* 2 */ |
---|
347 | TclpCreatePipe, /* 3 */ |
---|
348 | TclpCreateProcess, /* 4 */ |
---|
349 | NULL, /* 5 */ |
---|
350 | TclpMakeFile, /* 6 */ |
---|
351 | TclpOpenFile, /* 7 */ |
---|
352 | TclUnixWaitForFile, /* 8 */ |
---|
353 | TclpCreateTempFile, /* 9 */ |
---|
354 | TclpReaddir, /* 10 */ |
---|
355 | TclpLocaltime_unix, /* 11 */ |
---|
356 | TclpGmtime_unix, /* 12 */ |
---|
357 | TclpInetNtoa, /* 13 */ |
---|
358 | TclUnixCopyFile, /* 14 */ |
---|
359 | #endif /* UNIX */ |
---|
360 | #ifdef __WIN32__ /* WIN */ |
---|
361 | TclWinConvertError, /* 0 */ |
---|
362 | TclWinConvertWSAError, /* 1 */ |
---|
363 | TclWinGetServByName, /* 2 */ |
---|
364 | TclWinGetSockOpt, /* 3 */ |
---|
365 | TclWinGetTclInstance, /* 4 */ |
---|
366 | NULL, /* 5 */ |
---|
367 | TclWinNToHS, /* 6 */ |
---|
368 | TclWinSetSockOpt, /* 7 */ |
---|
369 | TclpGetPid, /* 8 */ |
---|
370 | TclWinGetPlatformId, /* 9 */ |
---|
371 | NULL, /* 10 */ |
---|
372 | TclGetAndDetachPids, /* 11 */ |
---|
373 | TclpCloseFile, /* 12 */ |
---|
374 | TclpCreateCommandChannel, /* 13 */ |
---|
375 | TclpCreatePipe, /* 14 */ |
---|
376 | TclpCreateProcess, /* 15 */ |
---|
377 | NULL, /* 16 */ |
---|
378 | NULL, /* 17 */ |
---|
379 | TclpMakeFile, /* 18 */ |
---|
380 | TclpOpenFile, /* 19 */ |
---|
381 | TclWinAddProcess, /* 20 */ |
---|
382 | NULL, /* 21 */ |
---|
383 | TclpCreateTempFile, /* 22 */ |
---|
384 | TclpGetTZName, /* 23 */ |
---|
385 | TclWinNoBackslash, /* 24 */ |
---|
386 | NULL, /* 25 */ |
---|
387 | TclWinSetInterfaces, /* 26 */ |
---|
388 | TclWinFlushDirtyChannels, /* 27 */ |
---|
389 | TclWinResetInterfaces, /* 28 */ |
---|
390 | TclWinCPUID, /* 29 */ |
---|
391 | #endif /* WIN */ |
---|
392 | #ifdef MAC_OSX_TCL /* MACOSX */ |
---|
393 | TclGetAndDetachPids, /* 0 */ |
---|
394 | TclpCloseFile, /* 1 */ |
---|
395 | TclpCreateCommandChannel, /* 2 */ |
---|
396 | TclpCreatePipe, /* 3 */ |
---|
397 | TclpCreateProcess, /* 4 */ |
---|
398 | NULL, /* 5 */ |
---|
399 | TclpMakeFile, /* 6 */ |
---|
400 | TclpOpenFile, /* 7 */ |
---|
401 | TclUnixWaitForFile, /* 8 */ |
---|
402 | TclpCreateTempFile, /* 9 */ |
---|
403 | TclpReaddir, /* 10 */ |
---|
404 | TclpLocaltime_unix, /* 11 */ |
---|
405 | TclpGmtime_unix, /* 12 */ |
---|
406 | TclpInetNtoa, /* 13 */ |
---|
407 | TclUnixCopyFile, /* 14 */ |
---|
408 | TclMacOSXGetFileAttribute, /* 15 */ |
---|
409 | TclMacOSXSetFileAttribute, /* 16 */ |
---|
410 | TclMacOSXCopyFileAttributes, /* 17 */ |
---|
411 | TclMacOSXMatchType, /* 18 */ |
---|
412 | #endif /* MACOSX */ |
---|
413 | }; |
---|
414 | |
---|
415 | TclPlatStubs tclPlatStubs = { |
---|
416 | TCL_STUB_MAGIC, |
---|
417 | NULL, |
---|
418 | #ifdef __WIN32__ /* WIN */ |
---|
419 | Tcl_WinUtfToTChar, /* 0 */ |
---|
420 | Tcl_WinTCharToUtf, /* 1 */ |
---|
421 | #endif /* WIN */ |
---|
422 | #ifdef MAC_OSX_TCL /* MACOSX */ |
---|
423 | Tcl_MacOSXOpenBundleResources, /* 0 */ |
---|
424 | Tcl_MacOSXOpenVersionedBundleResources, /* 1 */ |
---|
425 | #endif /* MACOSX */ |
---|
426 | }; |
---|
427 | |
---|
428 | TclTomMathStubs tclTomMathStubs = { |
---|
429 | TCL_STUB_MAGIC, |
---|
430 | NULL, |
---|
431 | TclBN_epoch, /* 0 */ |
---|
432 | TclBN_revision, /* 1 */ |
---|
433 | TclBN_mp_add, /* 2 */ |
---|
434 | TclBN_mp_add_d, /* 3 */ |
---|
435 | TclBN_mp_and, /* 4 */ |
---|
436 | TclBN_mp_clamp, /* 5 */ |
---|
437 | TclBN_mp_clear, /* 6 */ |
---|
438 | TclBN_mp_clear_multi, /* 7 */ |
---|
439 | TclBN_mp_cmp, /* 8 */ |
---|
440 | TclBN_mp_cmp_d, /* 9 */ |
---|
441 | TclBN_mp_cmp_mag, /* 10 */ |
---|
442 | TclBN_mp_copy, /* 11 */ |
---|
443 | TclBN_mp_count_bits, /* 12 */ |
---|
444 | TclBN_mp_div, /* 13 */ |
---|
445 | TclBN_mp_div_d, /* 14 */ |
---|
446 | TclBN_mp_div_2, /* 15 */ |
---|
447 | TclBN_mp_div_2d, /* 16 */ |
---|
448 | TclBN_mp_div_3, /* 17 */ |
---|
449 | TclBN_mp_exch, /* 18 */ |
---|
450 | TclBN_mp_expt_d, /* 19 */ |
---|
451 | TclBN_mp_grow, /* 20 */ |
---|
452 | TclBN_mp_init, /* 21 */ |
---|
453 | TclBN_mp_init_copy, /* 22 */ |
---|
454 | TclBN_mp_init_multi, /* 23 */ |
---|
455 | TclBN_mp_init_set, /* 24 */ |
---|
456 | TclBN_mp_init_size, /* 25 */ |
---|
457 | TclBN_mp_lshd, /* 26 */ |
---|
458 | TclBN_mp_mod, /* 27 */ |
---|
459 | TclBN_mp_mod_2d, /* 28 */ |
---|
460 | TclBN_mp_mul, /* 29 */ |
---|
461 | TclBN_mp_mul_d, /* 30 */ |
---|
462 | TclBN_mp_mul_2, /* 31 */ |
---|
463 | TclBN_mp_mul_2d, /* 32 */ |
---|
464 | TclBN_mp_neg, /* 33 */ |
---|
465 | TclBN_mp_or, /* 34 */ |
---|
466 | TclBN_mp_radix_size, /* 35 */ |
---|
467 | TclBN_mp_read_radix, /* 36 */ |
---|
468 | TclBN_mp_rshd, /* 37 */ |
---|
469 | TclBN_mp_shrink, /* 38 */ |
---|
470 | TclBN_mp_set, /* 39 */ |
---|
471 | TclBN_mp_sqr, /* 40 */ |
---|
472 | TclBN_mp_sqrt, /* 41 */ |
---|
473 | TclBN_mp_sub, /* 42 */ |
---|
474 | TclBN_mp_sub_d, /* 43 */ |
---|
475 | TclBN_mp_to_unsigned_bin, /* 44 */ |
---|
476 | TclBN_mp_to_unsigned_bin_n, /* 45 */ |
---|
477 | TclBN_mp_toradix_n, /* 46 */ |
---|
478 | TclBN_mp_unsigned_bin_size, /* 47 */ |
---|
479 | TclBN_mp_xor, /* 48 */ |
---|
480 | TclBN_mp_zero, /* 49 */ |
---|
481 | TclBN_reverse, /* 50 */ |
---|
482 | TclBN_fast_s_mp_mul_digs, /* 51 */ |
---|
483 | TclBN_fast_s_mp_sqr, /* 52 */ |
---|
484 | TclBN_mp_karatsuba_mul, /* 53 */ |
---|
485 | TclBN_mp_karatsuba_sqr, /* 54 */ |
---|
486 | TclBN_mp_toom_mul, /* 55 */ |
---|
487 | TclBN_mp_toom_sqr, /* 56 */ |
---|
488 | TclBN_s_mp_add, /* 57 */ |
---|
489 | TclBN_s_mp_mul_digs, /* 58 */ |
---|
490 | TclBN_s_mp_sqr, /* 59 */ |
---|
491 | TclBN_s_mp_sub, /* 60 */ |
---|
492 | }; |
---|
493 | |
---|
494 | static TclStubHooks tclStubHooks = { |
---|
495 | &tclPlatStubs, |
---|
496 | &tclIntStubs, |
---|
497 | &tclIntPlatStubs |
---|
498 | }; |
---|
499 | |
---|
500 | TclStubs tclStubs = { |
---|
501 | TCL_STUB_MAGIC, |
---|
502 | &tclStubHooks, |
---|
503 | Tcl_PkgProvideEx, /* 0 */ |
---|
504 | Tcl_PkgRequireEx, /* 1 */ |
---|
505 | Tcl_Panic, /* 2 */ |
---|
506 | Tcl_Alloc, /* 3 */ |
---|
507 | Tcl_Free, /* 4 */ |
---|
508 | Tcl_Realloc, /* 5 */ |
---|
509 | Tcl_DbCkalloc, /* 6 */ |
---|
510 | Tcl_DbCkfree, /* 7 */ |
---|
511 | Tcl_DbCkrealloc, /* 8 */ |
---|
512 | #if !defined(__WIN32__) && !defined(MAC_OSX_TCL) /* UNIX */ |
---|
513 | Tcl_CreateFileHandler, /* 9 */ |
---|
514 | #endif /* UNIX */ |
---|
515 | #ifdef __WIN32__ /* WIN */ |
---|
516 | NULL, /* 9 */ |
---|
517 | #endif /* WIN */ |
---|
518 | #ifdef MAC_OSX_TCL /* MACOSX */ |
---|
519 | Tcl_CreateFileHandler, /* 9 */ |
---|
520 | #endif /* MACOSX */ |
---|
521 | #if !defined(__WIN32__) && !defined(MAC_OSX_TCL) /* UNIX */ |
---|
522 | Tcl_DeleteFileHandler, /* 10 */ |
---|
523 | #endif /* UNIX */ |
---|
524 | #ifdef __WIN32__ /* WIN */ |
---|
525 | NULL, /* 10 */ |
---|
526 | #endif /* WIN */ |
---|
527 | #ifdef MAC_OSX_TCL /* MACOSX */ |
---|
528 | Tcl_DeleteFileHandler, /* 10 */ |
---|
529 | #endif /* MACOSX */ |
---|
530 | Tcl_SetTimer, /* 11 */ |
---|
531 | Tcl_Sleep, /* 12 */ |
---|
532 | Tcl_WaitForEvent, /* 13 */ |
---|
533 | Tcl_AppendAllObjTypes, /* 14 */ |
---|
534 | Tcl_AppendStringsToObj, /* 15 */ |
---|
535 | Tcl_AppendToObj, /* 16 */ |
---|
536 | Tcl_ConcatObj, /* 17 */ |
---|
537 | Tcl_ConvertToType, /* 18 */ |
---|
538 | Tcl_DbDecrRefCount, /* 19 */ |
---|
539 | Tcl_DbIncrRefCount, /* 20 */ |
---|
540 | Tcl_DbIsShared, /* 21 */ |
---|
541 | Tcl_DbNewBooleanObj, /* 22 */ |
---|
542 | Tcl_DbNewByteArrayObj, /* 23 */ |
---|
543 | Tcl_DbNewDoubleObj, /* 24 */ |
---|
544 | Tcl_DbNewListObj, /* 25 */ |
---|
545 | Tcl_DbNewLongObj, /* 26 */ |
---|
546 | Tcl_DbNewObj, /* 27 */ |
---|
547 | Tcl_DbNewStringObj, /* 28 */ |
---|
548 | Tcl_DuplicateObj, /* 29 */ |
---|
549 | TclFreeObj, /* 30 */ |
---|
550 | Tcl_GetBoolean, /* 31 */ |
---|
551 | Tcl_GetBooleanFromObj, /* 32 */ |
---|
552 | Tcl_GetByteArrayFromObj, /* 33 */ |
---|
553 | Tcl_GetDouble, /* 34 */ |
---|
554 | Tcl_GetDoubleFromObj, /* 35 */ |
---|
555 | Tcl_GetIndexFromObj, /* 36 */ |
---|
556 | Tcl_GetInt, /* 37 */ |
---|
557 | Tcl_GetIntFromObj, /* 38 */ |
---|
558 | Tcl_GetLongFromObj, /* 39 */ |
---|
559 | Tcl_GetObjType, /* 40 */ |
---|
560 | Tcl_GetStringFromObj, /* 41 */ |
---|
561 | Tcl_InvalidateStringRep, /* 42 */ |
---|
562 | Tcl_ListObjAppendList, /* 43 */ |
---|
563 | Tcl_ListObjAppendElement, /* 44 */ |
---|
564 | Tcl_ListObjGetElements, /* 45 */ |
---|
565 | Tcl_ListObjIndex, /* 46 */ |
---|
566 | Tcl_ListObjLength, /* 47 */ |
---|
567 | Tcl_ListObjReplace, /* 48 */ |
---|
568 | Tcl_NewBooleanObj, /* 49 */ |
---|
569 | Tcl_NewByteArrayObj, /* 50 */ |
---|
570 | Tcl_NewDoubleObj, /* 51 */ |
---|
571 | Tcl_NewIntObj, /* 52 */ |
---|
572 | Tcl_NewListObj, /* 53 */ |
---|
573 | Tcl_NewLongObj, /* 54 */ |
---|
574 | Tcl_NewObj, /* 55 */ |
---|
575 | Tcl_NewStringObj, /* 56 */ |
---|
576 | Tcl_SetBooleanObj, /* 57 */ |
---|
577 | Tcl_SetByteArrayLength, /* 58 */ |
---|
578 | Tcl_SetByteArrayObj, /* 59 */ |
---|
579 | Tcl_SetDoubleObj, /* 60 */ |
---|
580 | Tcl_SetIntObj, /* 61 */ |
---|
581 | Tcl_SetListObj, /* 62 */ |
---|
582 | Tcl_SetLongObj, /* 63 */ |
---|
583 | Tcl_SetObjLength, /* 64 */ |
---|
584 | Tcl_SetStringObj, /* 65 */ |
---|
585 | Tcl_AddErrorInfo, /* 66 */ |
---|
586 | Tcl_AddObjErrorInfo, /* 67 */ |
---|
587 | Tcl_AllowExceptions, /* 68 */ |
---|
588 | Tcl_AppendElement, /* 69 */ |
---|
589 | Tcl_AppendResult, /* 70 */ |
---|
590 | Tcl_AsyncCreate, /* 71 */ |
---|
591 | Tcl_AsyncDelete, /* 72 */ |
---|
592 | Tcl_AsyncInvoke, /* 73 */ |
---|
593 | Tcl_AsyncMark, /* 74 */ |
---|
594 | Tcl_AsyncReady, /* 75 */ |
---|
595 | Tcl_BackgroundError, /* 76 */ |
---|
596 | Tcl_Backslash, /* 77 */ |
---|
597 | Tcl_BadChannelOption, /* 78 */ |
---|
598 | Tcl_CallWhenDeleted, /* 79 */ |
---|
599 | Tcl_CancelIdleCall, /* 80 */ |
---|
600 | Tcl_Close, /* 81 */ |
---|
601 | Tcl_CommandComplete, /* 82 */ |
---|
602 | Tcl_Concat, /* 83 */ |
---|
603 | Tcl_ConvertElement, /* 84 */ |
---|
604 | Tcl_ConvertCountedElement, /* 85 */ |
---|
605 | Tcl_CreateAlias, /* 86 */ |
---|
606 | Tcl_CreateAliasObj, /* 87 */ |
---|
607 | Tcl_CreateChannel, /* 88 */ |
---|
608 | Tcl_CreateChannelHandler, /* 89 */ |
---|
609 | Tcl_CreateCloseHandler, /* 90 */ |
---|
610 | Tcl_CreateCommand, /* 91 */ |
---|
611 | Tcl_CreateEventSource, /* 92 */ |
---|
612 | Tcl_CreateExitHandler, /* 93 */ |
---|
613 | Tcl_CreateInterp, /* 94 */ |
---|
614 | Tcl_CreateMathFunc, /* 95 */ |
---|
615 | Tcl_CreateObjCommand, /* 96 */ |
---|
616 | Tcl_CreateSlave, /* 97 */ |
---|
617 | Tcl_CreateTimerHandler, /* 98 */ |
---|
618 | Tcl_CreateTrace, /* 99 */ |
---|
619 | Tcl_DeleteAssocData, /* 100 */ |
---|
620 | Tcl_DeleteChannelHandler, /* 101 */ |
---|
621 | Tcl_DeleteCloseHandler, /* 102 */ |
---|
622 | Tcl_DeleteCommand, /* 103 */ |
---|
623 | Tcl_DeleteCommandFromToken, /* 104 */ |
---|
624 | Tcl_DeleteEvents, /* 105 */ |
---|
625 | Tcl_DeleteEventSource, /* 106 */ |
---|
626 | Tcl_DeleteExitHandler, /* 107 */ |
---|
627 | Tcl_DeleteHashEntry, /* 108 */ |
---|
628 | Tcl_DeleteHashTable, /* 109 */ |
---|
629 | Tcl_DeleteInterp, /* 110 */ |
---|
630 | #if !defined(__WIN32__) && !defined(MAC_OSX_TCL) /* UNIX */ |
---|
631 | Tcl_DetachPids, /* 111 */ |
---|
632 | #endif /* UNIX */ |
---|
633 | #ifdef __WIN32__ /* WIN */ |
---|
634 | Tcl_DetachPids, /* 111 */ |
---|
635 | #endif /* WIN */ |
---|
636 | #ifdef MAC_OSX_TCL /* MACOSX */ |
---|
637 | Tcl_DetachPids, /* 111 */ |
---|
638 | #endif /* MACOSX */ |
---|
639 | Tcl_DeleteTimerHandler, /* 112 */ |
---|
640 | Tcl_DeleteTrace, /* 113 */ |
---|
641 | Tcl_DontCallWhenDeleted, /* 114 */ |
---|
642 | Tcl_DoOneEvent, /* 115 */ |
---|
643 | Tcl_DoWhenIdle, /* 116 */ |
---|
644 | Tcl_DStringAppend, /* 117 */ |
---|
645 | Tcl_DStringAppendElement, /* 118 */ |
---|
646 | Tcl_DStringEndSublist, /* 119 */ |
---|
647 | Tcl_DStringFree, /* 120 */ |
---|
648 | Tcl_DStringGetResult, /* 121 */ |
---|
649 | Tcl_DStringInit, /* 122 */ |
---|
650 | Tcl_DStringResult, /* 123 */ |
---|
651 | Tcl_DStringSetLength, /* 124 */ |
---|
652 | Tcl_DStringStartSublist, /* 125 */ |
---|
653 | Tcl_Eof, /* 126 */ |
---|
654 | Tcl_ErrnoId, /* 127 */ |
---|
655 | Tcl_ErrnoMsg, /* 128 */ |
---|
656 | Tcl_Eval, /* 129 */ |
---|
657 | Tcl_EvalFile, /* 130 */ |
---|
658 | Tcl_EvalObj, /* 131 */ |
---|
659 | Tcl_EventuallyFree, /* 132 */ |
---|
660 | Tcl_Exit, /* 133 */ |
---|
661 | Tcl_ExposeCommand, /* 134 */ |
---|
662 | Tcl_ExprBoolean, /* 135 */ |
---|
663 | Tcl_ExprBooleanObj, /* 136 */ |
---|
664 | Tcl_ExprDouble, /* 137 */ |
---|
665 | Tcl_ExprDoubleObj, /* 138 */ |
---|
666 | Tcl_ExprLong, /* 139 */ |
---|
667 | Tcl_ExprLongObj, /* 140 */ |
---|
668 | Tcl_ExprObj, /* 141 */ |
---|
669 | Tcl_ExprString, /* 142 */ |
---|
670 | Tcl_Finalize, /* 143 */ |
---|
671 | Tcl_FindExecutable, /* 144 */ |
---|
672 | Tcl_FirstHashEntry, /* 145 */ |
---|
673 | Tcl_Flush, /* 146 */ |
---|
674 | Tcl_FreeResult, /* 147 */ |
---|
675 | Tcl_GetAlias, /* 148 */ |
---|
676 | Tcl_GetAliasObj, /* 149 */ |
---|
677 | Tcl_GetAssocData, /* 150 */ |
---|
678 | Tcl_GetChannel, /* 151 */ |
---|
679 | Tcl_GetChannelBufferSize, /* 152 */ |
---|
680 | Tcl_GetChannelHandle, /* 153 */ |
---|
681 | Tcl_GetChannelInstanceData, /* 154 */ |
---|
682 | Tcl_GetChannelMode, /* 155 */ |
---|
683 | Tcl_GetChannelName, /* 156 */ |
---|
684 | Tcl_GetChannelOption, /* 157 */ |
---|
685 | Tcl_GetChannelType, /* 158 */ |
---|
686 | Tcl_GetCommandInfo, /* 159 */ |
---|
687 | Tcl_GetCommandName, /* 160 */ |
---|
688 | Tcl_GetErrno, /* 161 */ |
---|
689 | Tcl_GetHostName, /* 162 */ |
---|
690 | Tcl_GetInterpPath, /* 163 */ |
---|
691 | Tcl_GetMaster, /* 164 */ |
---|
692 | Tcl_GetNameOfExecutable, /* 165 */ |
---|
693 | Tcl_GetObjResult, /* 166 */ |
---|
694 | #if !defined(__WIN32__) && !defined(MAC_OSX_TCL) /* UNIX */ |
---|
695 | Tcl_GetOpenFile, /* 167 */ |
---|
696 | #endif /* UNIX */ |
---|
697 | #ifdef __WIN32__ /* WIN */ |
---|
698 | NULL, /* 167 */ |
---|
699 | #endif /* WIN */ |
---|
700 | #ifdef MAC_OSX_TCL /* MACOSX */ |
---|
701 | Tcl_GetOpenFile, /* 167 */ |
---|
702 | #endif /* MACOSX */ |
---|
703 | Tcl_GetPathType, /* 168 */ |
---|
704 | Tcl_Gets, /* 169 */ |
---|
705 | Tcl_GetsObj, /* 170 */ |
---|
706 | Tcl_GetServiceMode, /* 171 */ |
---|
707 | Tcl_GetSlave, /* 172 */ |
---|
708 | Tcl_GetStdChannel, /* 173 */ |
---|
709 | Tcl_GetStringResult, /* 174 */ |
---|
710 | Tcl_GetVar, /* 175 */ |
---|
711 | Tcl_GetVar2, /* 176 */ |
---|
712 | Tcl_GlobalEval, /* 177 */ |
---|
713 | Tcl_GlobalEvalObj, /* 178 */ |
---|
714 | Tcl_HideCommand, /* 179 */ |
---|
715 | Tcl_Init, /* 180 */ |
---|
716 | Tcl_InitHashTable, /* 181 */ |
---|
717 | Tcl_InputBlocked, /* 182 */ |
---|
718 | Tcl_InputBuffered, /* 183 */ |
---|
719 | Tcl_InterpDeleted, /* 184 */ |
---|
720 | Tcl_IsSafe, /* 185 */ |
---|
721 | Tcl_JoinPath, /* 186 */ |
---|
722 | Tcl_LinkVar, /* 187 */ |
---|
723 | NULL, /* 188 */ |
---|
724 | Tcl_MakeFileChannel, /* 189 */ |
---|
725 | Tcl_MakeSafe, /* 190 */ |
---|
726 | Tcl_MakeTcpClientChannel, /* 191 */ |
---|
727 | Tcl_Merge, /* 192 */ |
---|
728 | Tcl_NextHashEntry, /* 193 */ |
---|
729 | Tcl_NotifyChannel, /* 194 */ |
---|
730 | Tcl_ObjGetVar2, /* 195 */ |
---|
731 | Tcl_ObjSetVar2, /* 196 */ |
---|
732 | #if !defined(__WIN32__) && !defined(MAC_OSX_TCL) /* UNIX */ |
---|
733 | Tcl_OpenCommandChannel, /* 197 */ |
---|
734 | #endif /* UNIX */ |
---|
735 | #ifdef __WIN32__ /* WIN */ |
---|
736 | Tcl_OpenCommandChannel, /* 197 */ |
---|
737 | #endif /* WIN */ |
---|
738 | #ifdef MAC_OSX_TCL /* MACOSX */ |
---|
739 | Tcl_OpenCommandChannel, /* 197 */ |
---|
740 | #endif /* MACOSX */ |
---|
741 | Tcl_OpenFileChannel, /* 198 */ |
---|
742 | Tcl_OpenTcpClient, /* 199 */ |
---|
743 | Tcl_OpenTcpServer, /* 200 */ |
---|
744 | Tcl_Preserve, /* 201 */ |
---|
745 | Tcl_PrintDouble, /* 202 */ |
---|
746 | Tcl_PutEnv, /* 203 */ |
---|
747 | Tcl_PosixError, /* 204 */ |
---|
748 | Tcl_QueueEvent, /* 205 */ |
---|
749 | Tcl_Read, /* 206 */ |
---|
750 | #if !defined(__WIN32__) && !defined(MAC_OSX_TCL) /* UNIX */ |
---|
751 | Tcl_ReapDetachedProcs, /* 207 */ |
---|
752 | #endif /* UNIX */ |
---|
753 | #ifdef __WIN32__ /* WIN */ |
---|
754 | Tcl_ReapDetachedProcs, /* 207 */ |
---|
755 | #endif /* WIN */ |
---|
756 | #ifdef MAC_OSX_TCL /* MACOSX */ |
---|
757 | Tcl_ReapDetachedProcs, /* 207 */ |
---|
758 | #endif /* MACOSX */ |
---|
759 | Tcl_RecordAndEval, /* 208 */ |
---|
760 | Tcl_RecordAndEvalObj, /* 209 */ |
---|
761 | Tcl_RegisterChannel, /* 210 */ |
---|
762 | Tcl_RegisterObjType, /* 211 */ |
---|
763 | Tcl_RegExpCompile, /* 212 */ |
---|
764 | Tcl_RegExpExec, /* 213 */ |
---|
765 | Tcl_RegExpMatch, /* 214 */ |
---|
766 | Tcl_RegExpRange, /* 215 */ |
---|
767 | Tcl_Release, /* 216 */ |
---|
768 | Tcl_ResetResult, /* 217 */ |
---|
769 | Tcl_ScanElement, /* 218 */ |
---|
770 | Tcl_ScanCountedElement, /* 219 */ |
---|
771 | Tcl_SeekOld, /* 220 */ |
---|
772 | Tcl_ServiceAll, /* 221 */ |
---|
773 | Tcl_ServiceEvent, /* 222 */ |
---|
774 | Tcl_SetAssocData, /* 223 */ |
---|
775 | Tcl_SetChannelBufferSize, /* 224 */ |
---|
776 | Tcl_SetChannelOption, /* 225 */ |
---|
777 | Tcl_SetCommandInfo, /* 226 */ |
---|
778 | Tcl_SetErrno, /* 227 */ |
---|
779 | Tcl_SetErrorCode, /* 228 */ |
---|
780 | Tcl_SetMaxBlockTime, /* 229 */ |
---|
781 | Tcl_SetPanicProc, /* 230 */ |
---|
782 | Tcl_SetRecursionLimit, /* 231 */ |
---|
783 | Tcl_SetResult, /* 232 */ |
---|
784 | Tcl_SetServiceMode, /* 233 */ |
---|
785 | Tcl_SetObjErrorCode, /* 234 */ |
---|
786 | Tcl_SetObjResult, /* 235 */ |
---|
787 | Tcl_SetStdChannel, /* 236 */ |
---|
788 | Tcl_SetVar, /* 237 */ |
---|
789 | Tcl_SetVar2, /* 238 */ |
---|
790 | Tcl_SignalId, /* 239 */ |
---|
791 | Tcl_SignalMsg, /* 240 */ |
---|
792 | Tcl_SourceRCFile, /* 241 */ |
---|
793 | Tcl_SplitList, /* 242 */ |
---|
794 | Tcl_SplitPath, /* 243 */ |
---|
795 | Tcl_StaticPackage, /* 244 */ |
---|
796 | Tcl_StringMatch, /* 245 */ |
---|
797 | Tcl_TellOld, /* 246 */ |
---|
798 | Tcl_TraceVar, /* 247 */ |
---|
799 | Tcl_TraceVar2, /* 248 */ |
---|
800 | Tcl_TranslateFileName, /* 249 */ |
---|
801 | Tcl_Ungets, /* 250 */ |
---|
802 | Tcl_UnlinkVar, /* 251 */ |
---|
803 | Tcl_UnregisterChannel, /* 252 */ |
---|
804 | Tcl_UnsetVar, /* 253 */ |
---|
805 | Tcl_UnsetVar2, /* 254 */ |
---|
806 | Tcl_UntraceVar, /* 255 */ |
---|
807 | Tcl_UntraceVar2, /* 256 */ |
---|
808 | Tcl_UpdateLinkedVar, /* 257 */ |
---|
809 | Tcl_UpVar, /* 258 */ |
---|
810 | Tcl_UpVar2, /* 259 */ |
---|
811 | Tcl_VarEval, /* 260 */ |
---|
812 | Tcl_VarTraceInfo, /* 261 */ |
---|
813 | Tcl_VarTraceInfo2, /* 262 */ |
---|
814 | Tcl_Write, /* 263 */ |
---|
815 | Tcl_WrongNumArgs, /* 264 */ |
---|
816 | Tcl_DumpActiveMemory, /* 265 */ |
---|
817 | Tcl_ValidateAllMemory, /* 266 */ |
---|
818 | Tcl_AppendResultVA, /* 267 */ |
---|
819 | Tcl_AppendStringsToObjVA, /* 268 */ |
---|
820 | Tcl_HashStats, /* 269 */ |
---|
821 | Tcl_ParseVar, /* 270 */ |
---|
822 | Tcl_PkgPresent, /* 271 */ |
---|
823 | Tcl_PkgPresentEx, /* 272 */ |
---|
824 | Tcl_PkgProvide, /* 273 */ |
---|
825 | Tcl_PkgRequire, /* 274 */ |
---|
826 | Tcl_SetErrorCodeVA, /* 275 */ |
---|
827 | Tcl_VarEvalVA, /* 276 */ |
---|
828 | Tcl_WaitPid, /* 277 */ |
---|
829 | Tcl_PanicVA, /* 278 */ |
---|
830 | Tcl_GetVersion, /* 279 */ |
---|
831 | Tcl_InitMemory, /* 280 */ |
---|
832 | Tcl_StackChannel, /* 281 */ |
---|
833 | Tcl_UnstackChannel, /* 282 */ |
---|
834 | Tcl_GetStackedChannel, /* 283 */ |
---|
835 | Tcl_SetMainLoop, /* 284 */ |
---|
836 | NULL, /* 285 */ |
---|
837 | Tcl_AppendObjToObj, /* 286 */ |
---|
838 | Tcl_CreateEncoding, /* 287 */ |
---|
839 | Tcl_CreateThreadExitHandler, /* 288 */ |
---|
840 | Tcl_DeleteThreadExitHandler, /* 289 */ |
---|
841 | Tcl_DiscardResult, /* 290 */ |
---|
842 | Tcl_EvalEx, /* 291 */ |
---|
843 | Tcl_EvalObjv, /* 292 */ |
---|
844 | Tcl_EvalObjEx, /* 293 */ |
---|
845 | Tcl_ExitThread, /* 294 */ |
---|
846 | Tcl_ExternalToUtf, /* 295 */ |
---|
847 | Tcl_ExternalToUtfDString, /* 296 */ |
---|
848 | Tcl_FinalizeThread, /* 297 */ |
---|
849 | Tcl_FinalizeNotifier, /* 298 */ |
---|
850 | Tcl_FreeEncoding, /* 299 */ |
---|
851 | Tcl_GetCurrentThread, /* 300 */ |
---|
852 | Tcl_GetEncoding, /* 301 */ |
---|
853 | Tcl_GetEncodingName, /* 302 */ |
---|
854 | Tcl_GetEncodingNames, /* 303 */ |
---|
855 | Tcl_GetIndexFromObjStruct, /* 304 */ |
---|
856 | Tcl_GetThreadData, /* 305 */ |
---|
857 | Tcl_GetVar2Ex, /* 306 */ |
---|
858 | Tcl_InitNotifier, /* 307 */ |
---|
859 | Tcl_MutexLock, /* 308 */ |
---|
860 | Tcl_MutexUnlock, /* 309 */ |
---|
861 | Tcl_ConditionNotify, /* 310 */ |
---|
862 | Tcl_ConditionWait, /* 311 */ |
---|
863 | Tcl_NumUtfChars, /* 312 */ |
---|
864 | Tcl_ReadChars, /* 313 */ |
---|
865 | Tcl_RestoreResult, /* 314 */ |
---|
866 | Tcl_SaveResult, /* 315 */ |
---|
867 | Tcl_SetSystemEncoding, /* 316 */ |
---|
868 | Tcl_SetVar2Ex, /* 317 */ |
---|
869 | Tcl_ThreadAlert, /* 318 */ |
---|
870 | Tcl_ThreadQueueEvent, /* 319 */ |
---|
871 | Tcl_UniCharAtIndex, /* 320 */ |
---|
872 | Tcl_UniCharToLower, /* 321 */ |
---|
873 | Tcl_UniCharToTitle, /* 322 */ |
---|
874 | Tcl_UniCharToUpper, /* 323 */ |
---|
875 | Tcl_UniCharToUtf, /* 324 */ |
---|
876 | Tcl_UtfAtIndex, /* 325 */ |
---|
877 | Tcl_UtfCharComplete, /* 326 */ |
---|
878 | Tcl_UtfBackslash, /* 327 */ |
---|
879 | Tcl_UtfFindFirst, /* 328 */ |
---|
880 | Tcl_UtfFindLast, /* 329 */ |
---|
881 | Tcl_UtfNext, /* 330 */ |
---|
882 | Tcl_UtfPrev, /* 331 */ |
---|
883 | Tcl_UtfToExternal, /* 332 */ |
---|
884 | Tcl_UtfToExternalDString, /* 333 */ |
---|
885 | Tcl_UtfToLower, /* 334 */ |
---|
886 | Tcl_UtfToTitle, /* 335 */ |
---|
887 | Tcl_UtfToUniChar, /* 336 */ |
---|
888 | Tcl_UtfToUpper, /* 337 */ |
---|
889 | Tcl_WriteChars, /* 338 */ |
---|
890 | Tcl_WriteObj, /* 339 */ |
---|
891 | Tcl_GetString, /* 340 */ |
---|
892 | Tcl_GetDefaultEncodingDir, /* 341 */ |
---|
893 | Tcl_SetDefaultEncodingDir, /* 342 */ |
---|
894 | Tcl_AlertNotifier, /* 343 */ |
---|
895 | Tcl_ServiceModeHook, /* 344 */ |
---|
896 | Tcl_UniCharIsAlnum, /* 345 */ |
---|
897 | Tcl_UniCharIsAlpha, /* 346 */ |
---|
898 | Tcl_UniCharIsDigit, /* 347 */ |
---|
899 | Tcl_UniCharIsLower, /* 348 */ |
---|
900 | Tcl_UniCharIsSpace, /* 349 */ |
---|
901 | Tcl_UniCharIsUpper, /* 350 */ |
---|
902 | Tcl_UniCharIsWordChar, /* 351 */ |
---|
903 | Tcl_UniCharLen, /* 352 */ |
---|
904 | Tcl_UniCharNcmp, /* 353 */ |
---|
905 | Tcl_UniCharToUtfDString, /* 354 */ |
---|
906 | Tcl_UtfToUniCharDString, /* 355 */ |
---|
907 | Tcl_GetRegExpFromObj, /* 356 */ |
---|
908 | Tcl_EvalTokens, /* 357 */ |
---|
909 | Tcl_FreeParse, /* 358 */ |
---|
910 | Tcl_LogCommandInfo, /* 359 */ |
---|
911 | Tcl_ParseBraces, /* 360 */ |
---|
912 | Tcl_ParseCommand, /* 361 */ |
---|
913 | Tcl_ParseExpr, /* 362 */ |
---|
914 | Tcl_ParseQuotedString, /* 363 */ |
---|
915 | Tcl_ParseVarName, /* 364 */ |
---|
916 | Tcl_GetCwd, /* 365 */ |
---|
917 | Tcl_Chdir, /* 366 */ |
---|
918 | Tcl_Access, /* 367 */ |
---|
919 | Tcl_Stat, /* 368 */ |
---|
920 | Tcl_UtfNcmp, /* 369 */ |
---|
921 | Tcl_UtfNcasecmp, /* 370 */ |
---|
922 | Tcl_StringCaseMatch, /* 371 */ |
---|
923 | Tcl_UniCharIsControl, /* 372 */ |
---|
924 | Tcl_UniCharIsGraph, /* 373 */ |
---|
925 | Tcl_UniCharIsPrint, /* 374 */ |
---|
926 | Tcl_UniCharIsPunct, /* 375 */ |
---|
927 | Tcl_RegExpExecObj, /* 376 */ |
---|
928 | Tcl_RegExpGetInfo, /* 377 */ |
---|
929 | Tcl_NewUnicodeObj, /* 378 */ |
---|
930 | Tcl_SetUnicodeObj, /* 379 */ |
---|
931 | Tcl_GetCharLength, /* 380 */ |
---|
932 | Tcl_GetUniChar, /* 381 */ |
---|
933 | Tcl_GetUnicode, /* 382 */ |
---|
934 | Tcl_GetRange, /* 383 */ |
---|
935 | Tcl_AppendUnicodeToObj, /* 384 */ |
---|
936 | Tcl_RegExpMatchObj, /* 385 */ |
---|
937 | Tcl_SetNotifier, /* 386 */ |
---|
938 | Tcl_GetAllocMutex, /* 387 */ |
---|
939 | Tcl_GetChannelNames, /* 388 */ |
---|
940 | Tcl_GetChannelNamesEx, /* 389 */ |
---|
941 | Tcl_ProcObjCmd, /* 390 */ |
---|
942 | Tcl_ConditionFinalize, /* 391 */ |
---|
943 | Tcl_MutexFinalize, /* 392 */ |
---|
944 | Tcl_CreateThread, /* 393 */ |
---|
945 | Tcl_ReadRaw, /* 394 */ |
---|
946 | Tcl_WriteRaw, /* 395 */ |
---|
947 | Tcl_GetTopChannel, /* 396 */ |
---|
948 | Tcl_ChannelBuffered, /* 397 */ |
---|
949 | Tcl_ChannelName, /* 398 */ |
---|
950 | Tcl_ChannelVersion, /* 399 */ |
---|
951 | Tcl_ChannelBlockModeProc, /* 400 */ |
---|
952 | Tcl_ChannelCloseProc, /* 401 */ |
---|
953 | Tcl_ChannelClose2Proc, /* 402 */ |
---|
954 | Tcl_ChannelInputProc, /* 403 */ |
---|
955 | Tcl_ChannelOutputProc, /* 404 */ |
---|
956 | Tcl_ChannelSeekProc, /* 405 */ |
---|
957 | Tcl_ChannelSetOptionProc, /* 406 */ |
---|
958 | Tcl_ChannelGetOptionProc, /* 407 */ |
---|
959 | Tcl_ChannelWatchProc, /* 408 */ |
---|
960 | Tcl_ChannelGetHandleProc, /* 409 */ |
---|
961 | Tcl_ChannelFlushProc, /* 410 */ |
---|
962 | Tcl_ChannelHandlerProc, /* 411 */ |
---|
963 | Tcl_JoinThread, /* 412 */ |
---|
964 | Tcl_IsChannelShared, /* 413 */ |
---|
965 | Tcl_IsChannelRegistered, /* 414 */ |
---|
966 | Tcl_CutChannel, /* 415 */ |
---|
967 | Tcl_SpliceChannel, /* 416 */ |
---|
968 | Tcl_ClearChannelHandlers, /* 417 */ |
---|
969 | Tcl_IsChannelExisting, /* 418 */ |
---|
970 | Tcl_UniCharNcasecmp, /* 419 */ |
---|
971 | Tcl_UniCharCaseMatch, /* 420 */ |
---|
972 | Tcl_FindHashEntry, /* 421 */ |
---|
973 | Tcl_CreateHashEntry, /* 422 */ |
---|
974 | Tcl_InitCustomHashTable, /* 423 */ |
---|
975 | Tcl_InitObjHashTable, /* 424 */ |
---|
976 | Tcl_CommandTraceInfo, /* 425 */ |
---|
977 | Tcl_TraceCommand, /* 426 */ |
---|
978 | Tcl_UntraceCommand, /* 427 */ |
---|
979 | Tcl_AttemptAlloc, /* 428 */ |
---|
980 | Tcl_AttemptDbCkalloc, /* 429 */ |
---|
981 | Tcl_AttemptRealloc, /* 430 */ |
---|
982 | Tcl_AttemptDbCkrealloc, /* 431 */ |
---|
983 | Tcl_AttemptSetObjLength, /* 432 */ |
---|
984 | Tcl_GetChannelThread, /* 433 */ |
---|
985 | Tcl_GetUnicodeFromObj, /* 434 */ |
---|
986 | Tcl_GetMathFuncInfo, /* 435 */ |
---|
987 | Tcl_ListMathFuncs, /* 436 */ |
---|
988 | Tcl_SubstObj, /* 437 */ |
---|
989 | Tcl_DetachChannel, /* 438 */ |
---|
990 | Tcl_IsStandardChannel, /* 439 */ |
---|
991 | Tcl_FSCopyFile, /* 440 */ |
---|
992 | Tcl_FSCopyDirectory, /* 441 */ |
---|
993 | Tcl_FSCreateDirectory, /* 442 */ |
---|
994 | Tcl_FSDeleteFile, /* 443 */ |
---|
995 | Tcl_FSLoadFile, /* 444 */ |
---|
996 | Tcl_FSMatchInDirectory, /* 445 */ |
---|
997 | Tcl_FSLink, /* 446 */ |
---|
998 | Tcl_FSRemoveDirectory, /* 447 */ |
---|
999 | Tcl_FSRenameFile, /* 448 */ |
---|
1000 | Tcl_FSLstat, /* 449 */ |
---|
1001 | Tcl_FSUtime, /* 450 */ |
---|
1002 | Tcl_FSFileAttrsGet, /* 451 */ |
---|
1003 | Tcl_FSFileAttrsSet, /* 452 */ |
---|
1004 | Tcl_FSFileAttrStrings, /* 453 */ |
---|
1005 | Tcl_FSStat, /* 454 */ |
---|
1006 | Tcl_FSAccess, /* 455 */ |
---|
1007 | Tcl_FSOpenFileChannel, /* 456 */ |
---|
1008 | Tcl_FSGetCwd, /* 457 */ |
---|
1009 | Tcl_FSChdir, /* 458 */ |
---|
1010 | Tcl_FSConvertToPathType, /* 459 */ |
---|
1011 | Tcl_FSJoinPath, /* 460 */ |
---|
1012 | Tcl_FSSplitPath, /* 461 */ |
---|
1013 | Tcl_FSEqualPaths, /* 462 */ |
---|
1014 | Tcl_FSGetNormalizedPath, /* 463 */ |
---|
1015 | Tcl_FSJoinToPath, /* 464 */ |
---|
1016 | Tcl_FSGetInternalRep, /* 465 */ |
---|
1017 | Tcl_FSGetTranslatedPath, /* 466 */ |
---|
1018 | Tcl_FSEvalFile, /* 467 */ |
---|
1019 | Tcl_FSNewNativePath, /* 468 */ |
---|
1020 | Tcl_FSGetNativePath, /* 469 */ |
---|
1021 | Tcl_FSFileSystemInfo, /* 470 */ |
---|
1022 | Tcl_FSPathSeparator, /* 471 */ |
---|
1023 | Tcl_FSListVolumes, /* 472 */ |
---|
1024 | Tcl_FSRegister, /* 473 */ |
---|
1025 | Tcl_FSUnregister, /* 474 */ |
---|
1026 | Tcl_FSData, /* 475 */ |
---|
1027 | Tcl_FSGetTranslatedStringPath, /* 476 */ |
---|
1028 | Tcl_FSGetFileSystemForPath, /* 477 */ |
---|
1029 | Tcl_FSGetPathType, /* 478 */ |
---|
1030 | Tcl_OutputBuffered, /* 479 */ |
---|
1031 | Tcl_FSMountsChanged, /* 480 */ |
---|
1032 | Tcl_EvalTokensStandard, /* 481 */ |
---|
1033 | Tcl_GetTime, /* 482 */ |
---|
1034 | Tcl_CreateObjTrace, /* 483 */ |
---|
1035 | Tcl_GetCommandInfoFromToken, /* 484 */ |
---|
1036 | Tcl_SetCommandInfoFromToken, /* 485 */ |
---|
1037 | Tcl_DbNewWideIntObj, /* 486 */ |
---|
1038 | Tcl_GetWideIntFromObj, /* 487 */ |
---|
1039 | Tcl_NewWideIntObj, /* 488 */ |
---|
1040 | Tcl_SetWideIntObj, /* 489 */ |
---|
1041 | Tcl_AllocStatBuf, /* 490 */ |
---|
1042 | Tcl_Seek, /* 491 */ |
---|
1043 | Tcl_Tell, /* 492 */ |
---|
1044 | Tcl_ChannelWideSeekProc, /* 493 */ |
---|
1045 | Tcl_DictObjPut, /* 494 */ |
---|
1046 | Tcl_DictObjGet, /* 495 */ |
---|
1047 | Tcl_DictObjRemove, /* 496 */ |
---|
1048 | Tcl_DictObjSize, /* 497 */ |
---|
1049 | Tcl_DictObjFirst, /* 498 */ |
---|
1050 | Tcl_DictObjNext, /* 499 */ |
---|
1051 | Tcl_DictObjDone, /* 500 */ |
---|
1052 | Tcl_DictObjPutKeyList, /* 501 */ |
---|
1053 | Tcl_DictObjRemoveKeyList, /* 502 */ |
---|
1054 | Tcl_NewDictObj, /* 503 */ |
---|
1055 | Tcl_DbNewDictObj, /* 504 */ |
---|
1056 | Tcl_RegisterConfig, /* 505 */ |
---|
1057 | Tcl_CreateNamespace, /* 506 */ |
---|
1058 | Tcl_DeleteNamespace, /* 507 */ |
---|
1059 | Tcl_AppendExportList, /* 508 */ |
---|
1060 | Tcl_Export, /* 509 */ |
---|
1061 | Tcl_Import, /* 510 */ |
---|
1062 | Tcl_ForgetImport, /* 511 */ |
---|
1063 | Tcl_GetCurrentNamespace, /* 512 */ |
---|
1064 | Tcl_GetGlobalNamespace, /* 513 */ |
---|
1065 | Tcl_FindNamespace, /* 514 */ |
---|
1066 | Tcl_FindCommand, /* 515 */ |
---|
1067 | Tcl_GetCommandFromObj, /* 516 */ |
---|
1068 | Tcl_GetCommandFullName, /* 517 */ |
---|
1069 | Tcl_FSEvalFileEx, /* 518 */ |
---|
1070 | Tcl_SetExitProc, /* 519 */ |
---|
1071 | Tcl_LimitAddHandler, /* 520 */ |
---|
1072 | Tcl_LimitRemoveHandler, /* 521 */ |
---|
1073 | Tcl_LimitReady, /* 522 */ |
---|
1074 | Tcl_LimitCheck, /* 523 */ |
---|
1075 | Tcl_LimitExceeded, /* 524 */ |
---|
1076 | Tcl_LimitSetCommands, /* 525 */ |
---|
1077 | Tcl_LimitSetTime, /* 526 */ |
---|
1078 | Tcl_LimitSetGranularity, /* 527 */ |
---|
1079 | Tcl_LimitTypeEnabled, /* 528 */ |
---|
1080 | Tcl_LimitTypeExceeded, /* 529 */ |
---|
1081 | Tcl_LimitTypeSet, /* 530 */ |
---|
1082 | Tcl_LimitTypeReset, /* 531 */ |
---|
1083 | Tcl_LimitGetCommands, /* 532 */ |
---|
1084 | Tcl_LimitGetTime, /* 533 */ |
---|
1085 | Tcl_LimitGetGranularity, /* 534 */ |
---|
1086 | Tcl_SaveInterpState, /* 535 */ |
---|
1087 | Tcl_RestoreInterpState, /* 536 */ |
---|
1088 | Tcl_DiscardInterpState, /* 537 */ |
---|
1089 | Tcl_SetReturnOptions, /* 538 */ |
---|
1090 | Tcl_GetReturnOptions, /* 539 */ |
---|
1091 | Tcl_IsEnsemble, /* 540 */ |
---|
1092 | Tcl_CreateEnsemble, /* 541 */ |
---|
1093 | Tcl_FindEnsemble, /* 542 */ |
---|
1094 | Tcl_SetEnsembleSubcommandList, /* 543 */ |
---|
1095 | Tcl_SetEnsembleMappingDict, /* 544 */ |
---|
1096 | Tcl_SetEnsembleUnknownHandler, /* 545 */ |
---|
1097 | Tcl_SetEnsembleFlags, /* 546 */ |
---|
1098 | Tcl_GetEnsembleSubcommandList, /* 547 */ |
---|
1099 | Tcl_GetEnsembleMappingDict, /* 548 */ |
---|
1100 | Tcl_GetEnsembleUnknownHandler, /* 549 */ |
---|
1101 | Tcl_GetEnsembleFlags, /* 550 */ |
---|
1102 | Tcl_GetEnsembleNamespace, /* 551 */ |
---|
1103 | Tcl_SetTimeProc, /* 552 */ |
---|
1104 | Tcl_QueryTimeProc, /* 553 */ |
---|
1105 | Tcl_ChannelThreadActionProc, /* 554 */ |
---|
1106 | Tcl_NewBignumObj, /* 555 */ |
---|
1107 | Tcl_DbNewBignumObj, /* 556 */ |
---|
1108 | Tcl_SetBignumObj, /* 557 */ |
---|
1109 | Tcl_GetBignumFromObj, /* 558 */ |
---|
1110 | Tcl_TakeBignumFromObj, /* 559 */ |
---|
1111 | Tcl_TruncateChannel, /* 560 */ |
---|
1112 | Tcl_ChannelTruncateProc, /* 561 */ |
---|
1113 | Tcl_SetChannelErrorInterp, /* 562 */ |
---|
1114 | Tcl_GetChannelErrorInterp, /* 563 */ |
---|
1115 | Tcl_SetChannelError, /* 564 */ |
---|
1116 | Tcl_GetChannelError, /* 565 */ |
---|
1117 | Tcl_InitBignumFromDouble, /* 566 */ |
---|
1118 | Tcl_GetNamespaceUnknownHandler, /* 567 */ |
---|
1119 | Tcl_SetNamespaceUnknownHandler, /* 568 */ |
---|
1120 | Tcl_GetEncodingFromObj, /* 569 */ |
---|
1121 | Tcl_GetEncodingSearchPath, /* 570 */ |
---|
1122 | Tcl_SetEncodingSearchPath, /* 571 */ |
---|
1123 | Tcl_GetEncodingNameFromEnvironment, /* 572 */ |
---|
1124 | Tcl_PkgRequireProc, /* 573 */ |
---|
1125 | Tcl_AppendObjToErrorInfo, /* 574 */ |
---|
1126 | Tcl_AppendLimitedToObj, /* 575 */ |
---|
1127 | Tcl_Format, /* 576 */ |
---|
1128 | Tcl_AppendFormatToObj, /* 577 */ |
---|
1129 | Tcl_ObjPrintf, /* 578 */ |
---|
1130 | Tcl_AppendPrintfToObj, /* 579 */ |
---|
1131 | }; |
---|
1132 | |
---|
1133 | /* !END!: Do not edit above this line. */ |
---|