File: Lang.m

package info (click to toggle)
perl-tk 1%3A800.011-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 16,820 kB
  • ctags: 17,448
  • sloc: ansic: 189,575; perl: 31,426; makefile: 4,360; sh: 1,921; yacc: 762
file content (743 lines) | stat: -rw-r--r-- 16,485 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
#ifndef _LANG_VM
#define _LANG_VM
#include "Lang_f.h"
#ifndef NO_VTABLES
#define LangOptionCommand (*LangVptr->V_LangOptionCommand)
#ifndef LangAllocVec
#  define LangAllocVec (*LangVptr->V_LangAllocVec)
#endif

#ifndef LangBadFile
#  define LangBadFile (*LangVptr->V_LangBadFile)
#endif

#ifndef LangCallbackArg
#  define LangCallbackArg (*LangVptr->V_LangCallbackArg)
#endif

#ifndef LangCmpArg
#  define LangCmpArg (*LangVptr->V_LangCmpArg)
#endif

#ifndef LangCmpCallback
#  define LangCmpCallback (*LangVptr->V_LangCmpCallback)
#endif

#ifndef LangCmpOpt
#  define LangCmpOpt (*LangVptr->V_LangCmpOpt)
#endif

#ifndef LangCopyArg
#  define LangCopyArg (*LangVptr->V_LangCopyArg)
#endif

#ifndef LangCopyCallback
#  define LangCopyCallback (*LangVptr->V_LangCopyCallback)
#endif

#ifndef LangDebug
#  define LangDebug (*LangVptr->V_LangDebug)
#endif

#ifndef LangDoCallback
#  define LangDoCallback (*LangVptr->V_LangDoCallback)
#endif

#ifndef LangDumpVec
#  define LangDumpVec (*LangVptr->V_LangDumpVec)
#endif

#ifndef LangEval
#  define LangEval (*LangVptr->V_LangEval)
#endif

#ifndef LangEventHook
#  define LangEventHook (*LangVptr->V_LangEventHook)
#endif

#ifndef LangExit
#  define LangExit (*LangVptr->V_LangExit)
#endif

#ifndef LangFreeArg
#  define LangFreeArg (*LangVptr->V_LangFreeArg)
#endif

#ifndef LangFreeCallback
#  define LangFreeCallback (*LangVptr->V_LangFreeCallback)
#endif

#ifndef LangFreeVar
#  define LangFreeVar (*LangVptr->V_LangFreeVar)
#endif

#ifndef LangFreeVec
#  define LangFreeVec (*LangVptr->V_LangFreeVec)
#endif

#ifndef LangLibraryDir
#  define LangLibraryDir (*LangVptr->V_LangLibraryDir)
#endif

#ifndef LangMakeCallback
#  define LangMakeCallback (*LangVptr->V_LangMakeCallback)
#endif

#ifndef LangMergeString
#  define LangMergeString (*LangVptr->V_LangMergeString)
#endif

#ifndef LangMethodCall
#  define LangMethodCall (*LangVptr->V_LangMethodCall)
#endif

#ifndef LangNull
#  define LangNull (*LangVptr->V_LangNull)
#endif

#ifndef LangRestoreResult
#  define LangRestoreResult (*LangVptr->V_LangRestoreResult)
#endif

#ifndef LangSaveResult
#  define LangSaveResult (*LangVptr->V_LangSaveResult)
#endif

#ifndef LangSaveVar
#  define LangSaveVar (*LangVptr->V_LangSaveVar)
#endif

#ifndef LangScalarResult
#  define LangScalarResult (*LangVptr->V_LangScalarResult)
#endif

#ifndef LangSetArg
#  define LangSetArg (*LangVptr->V_LangSetArg)
#endif

#ifndef LangSetDefault
#  define LangSetDefault (*LangVptr->V_LangSetDefault)
#endif

#ifndef LangSetDouble
#  define LangSetDouble (*LangVptr->V_LangSetDouble)
#endif

#ifndef LangSetInt
#  define LangSetInt (*LangVptr->V_LangSetInt)
#endif

#ifndef LangSetString
#  define LangSetString (*LangVptr->V_LangSetString)
#endif

#ifndef LangString
#  define LangString (*LangVptr->V_LangString)
#endif

#ifndef LangStringArg
#  define LangStringArg (*LangVptr->V_LangStringArg)
#endif

#ifndef LangStringMatch
#  define LangStringMatch (*LangVptr->V_LangStringMatch)
#endif

#ifndef LangVarArg
#  define LangVarArg (*LangVptr->V_LangVarArg)
#endif

#ifndef Lang_BuildInImages
#  define Lang_BuildInImages (*LangVptr->V_Lang_BuildInImages)
#endif

#ifndef Lang_CallWithArgs
#  define Lang_CallWithArgs (*LangVptr->V_Lang_CallWithArgs)
#endif

#ifndef Lang_CreateObject
#  define Lang_CreateObject (*LangVptr->V_Lang_CreateObject)
#endif

#ifndef Lang_DeleteObject
#  define Lang_DeleteObject (*LangVptr->V_Lang_DeleteObject)
#endif

#ifndef Lang_FreeRegExp
#  define Lang_FreeRegExp (*LangVptr->V_Lang_FreeRegExp)
#endif

#ifndef Lang_GetErrorCode
#  define Lang_GetErrorCode (*LangVptr->V_Lang_GetErrorCode)
#endif

#ifndef Lang_GetErrorInfo
#  define Lang_GetErrorInfo (*LangVptr->V_Lang_GetErrorInfo)
#endif

#ifndef Lang_GetStrInt
#  define Lang_GetStrInt (*LangVptr->V_Lang_GetStrInt)
#endif

#ifndef Lang_OSHandle
#  define Lang_OSHandle (*LangVptr->V_Lang_OSHandle)
#endif

#ifndef Lang_RegExpCompile
#  define Lang_RegExpCompile (*LangVptr->V_Lang_RegExpCompile)
#endif

#ifndef Lang_RegExpExec
#  define Lang_RegExpExec (*LangVptr->V_Lang_RegExpExec)
#endif

#ifndef Lang_SetBinaryResult
#  define Lang_SetBinaryResult (*LangVptr->V_Lang_SetBinaryResult)
#endif

#ifndef Lang_SetErrorCode
#  define Lang_SetErrorCode (*LangVptr->V_Lang_SetErrorCode)
#endif

#ifndef Lang_SplitList
#  define Lang_SplitList (*LangVptr->V_Lang_SplitList)
#endif

#ifndef Lang_SplitString
#  define Lang_SplitString (*LangVptr->V_Lang_SplitString)
#endif

#ifndef TclServiceIdle
#  define TclServiceIdle (*LangVptr->V_TclServiceIdle)
#endif

#ifndef Tcl_AddErrorInfo
#  define Tcl_AddErrorInfo (*LangVptr->V_Tcl_AddErrorInfo)
#endif

#ifndef Tcl_AfterObjCmd
#  define Tcl_AfterObjCmd (*LangVptr->V_Tcl_AfterObjCmd)
#endif

#ifndef Tcl_Alloc
#  define Tcl_Alloc (*LangVptr->V_Tcl_Alloc)
#endif

#ifndef Tcl_AllowExceptions
#  define Tcl_AllowExceptions (*LangVptr->V_Tcl_AllowExceptions)
#endif

#ifndef Tcl_AppendArg
#  define Tcl_AppendArg (*LangVptr->V_Tcl_AppendArg)
#endif

#ifndef Tcl_AppendElement
#  define Tcl_AppendElement (*LangVptr->V_Tcl_AppendElement)
#endif

#ifndef Tcl_AppendResult
#  define Tcl_AppendResult (*LangVptr->V_Tcl_AppendResult)
#endif

#ifndef Tcl_AppendStringsToObj
#  define Tcl_AppendStringsToObj (*LangVptr->V_Tcl_AppendStringsToObj)
#endif

#ifndef Tcl_ArgResult
#  define Tcl_ArgResult (*LangVptr->V_Tcl_ArgResult)
#endif

#ifndef Tcl_AsyncCreate
#  define Tcl_AsyncCreate (*LangVptr->V_Tcl_AsyncCreate)
#endif

#ifndef Tcl_AsyncDelete
#  define Tcl_AsyncDelete (*LangVptr->V_Tcl_AsyncDelete)
#endif

#ifndef Tcl_AsyncInvoke
#  define Tcl_AsyncInvoke (*LangVptr->V_Tcl_AsyncInvoke)
#endif

#ifndef Tcl_AsyncMark
#  define Tcl_AsyncMark (*LangVptr->V_Tcl_AsyncMark)
#endif

#ifndef Tcl_AsyncReady
#  define Tcl_AsyncReady (*LangVptr->V_Tcl_AsyncReady)
#endif

#ifndef Tcl_BackgroundError
#  define Tcl_BackgroundError (*LangVptr->V_Tcl_BackgroundError)
#endif

#ifndef Tcl_CallWhenDeleted
#  define Tcl_CallWhenDeleted (*LangVptr->V_Tcl_CallWhenDeleted)
#endif

#ifndef Tcl_CancelIdleCall
#  define Tcl_CancelIdleCall (*LangVptr->V_Tcl_CancelIdleCall)
#endif

#ifndef Tcl_Close
#  define Tcl_Close (*LangVptr->V_Tcl_Close)
#endif

#ifndef Tcl_Concat
#  define Tcl_Concat (*LangVptr->V_Tcl_Concat)
#endif

#ifndef Tcl_CreateCommand
#  define Tcl_CreateCommand (*LangVptr->V_Tcl_CreateCommand)
#endif

#ifndef Tcl_CreateEventSource
#  define Tcl_CreateEventSource (*LangVptr->V_Tcl_CreateEventSource)
#endif

#ifndef Tcl_CreateExitHandler
#  define Tcl_CreateExitHandler (*LangVptr->V_Tcl_CreateExitHandler)
#endif

#ifndef Tcl_CreateFileHandler
#  define Tcl_CreateFileHandler (*LangVptr->V_Tcl_CreateFileHandler)
#endif

#ifndef Tcl_CreateInterp
#  define Tcl_CreateInterp (*LangVptr->V_Tcl_CreateInterp)
#endif

#ifndef Tcl_CreateObjCommand
#  define Tcl_CreateObjCommand (*LangVptr->V_Tcl_CreateObjCommand)
#endif

#ifndef Tcl_CreateTimerHandler
#  define Tcl_CreateTimerHandler (*LangVptr->V_Tcl_CreateTimerHandler)
#endif

#ifndef Tcl_DStringAppend
#  define Tcl_DStringAppend (*LangVptr->V_Tcl_DStringAppend)
#endif

#ifndef Tcl_DStringAppendElement
#  define Tcl_DStringAppendElement (*LangVptr->V_Tcl_DStringAppendElement)
#endif

#ifndef Tcl_DStringFree
#  define Tcl_DStringFree (*LangVptr->V_Tcl_DStringFree)
#endif

#ifndef Tcl_DStringInit
#  define Tcl_DStringInit (*LangVptr->V_Tcl_DStringInit)
#endif

#ifndef Tcl_DStringLength
#  define Tcl_DStringLength (*LangVptr->V_Tcl_DStringLength)
#endif

#ifndef Tcl_DStringResult
#  define Tcl_DStringResult (*LangVptr->V_Tcl_DStringResult)
#endif

#ifndef Tcl_DStringSetLength
#  define Tcl_DStringSetLength (*LangVptr->V_Tcl_DStringSetLength)
#endif

#ifndef Tcl_DStringValue
#  define Tcl_DStringValue (*LangVptr->V_Tcl_DStringValue)
#endif

#ifndef Tcl_DbDStringInit
#  define Tcl_DbDStringInit (*LangVptr->V_Tcl_DbDStringInit)
#endif

#ifndef Tcl_DecrRefCount
#  define Tcl_DecrRefCount (*LangVptr->V_Tcl_DecrRefCount)
#endif

#ifndef Tcl_DeleteCommandFromToken
#  define Tcl_DeleteCommandFromToken (*LangVptr->V_Tcl_DeleteCommandFromToken)
#endif

#ifndef Tcl_DeleteEventSource
#  define Tcl_DeleteEventSource (*LangVptr->V_Tcl_DeleteEventSource)
#endif

#ifndef Tcl_DeleteEvents
#  define Tcl_DeleteEvents (*LangVptr->V_Tcl_DeleteEvents)
#endif

#ifndef Tcl_DeleteExitHandler
#  define Tcl_DeleteExitHandler (*LangVptr->V_Tcl_DeleteExitHandler)
#endif

#ifndef Tcl_DeleteFileHandler
#  define Tcl_DeleteFileHandler (*LangVptr->V_Tcl_DeleteFileHandler)
#endif

#ifndef Tcl_DeleteHashEntry
#  define Tcl_DeleteHashEntry (*LangVptr->V_Tcl_DeleteHashEntry)
#endif

#ifndef Tcl_DeleteHashTable
#  define Tcl_DeleteHashTable (*LangVptr->V_Tcl_DeleteHashTable)
#endif

#ifndef Tcl_DeleteInterp
#  define Tcl_DeleteInterp (*LangVptr->V_Tcl_DeleteInterp)
#endif

#ifndef Tcl_DeleteTimerHandler
#  define Tcl_DeleteTimerHandler (*LangVptr->V_Tcl_DeleteTimerHandler)
#endif

#ifndef Tcl_DoOneEvent
#  define Tcl_DoOneEvent (*LangVptr->V_Tcl_DoOneEvent)
#endif

#ifndef Tcl_DoWhenIdle
#  define Tcl_DoWhenIdle (*LangVptr->V_Tcl_DoWhenIdle)
#endif

#ifndef Tcl_DoubleResults
#  define Tcl_DoubleResults (*LangVptr->V_Tcl_DoubleResults)
#endif

#ifndef Tcl_Eof
#  define Tcl_Eof (*LangVptr->V_Tcl_Eof)
#endif

#ifndef Tcl_EvalObj
#  define Tcl_EvalObj (*LangVptr->V_Tcl_EvalObj)
#endif

#ifndef Tcl_EventuallyFree
#  define Tcl_EventuallyFree (*LangVptr->V_Tcl_EventuallyFree)
#endif

#ifndef Tcl_Exit
#  define Tcl_Exit (*LangVptr->V_Tcl_Exit)
#endif

#ifndef Tcl_Finalize
#  define Tcl_Finalize (*LangVptr->V_Tcl_Finalize)
#endif

#ifndef Tcl_FirstHashEntry
#  define Tcl_FirstHashEntry (*LangVptr->V_Tcl_FirstHashEntry)
#endif

#ifndef Tcl_Free
#  define Tcl_Free (*LangVptr->V_Tcl_Free)
#endif

#ifndef Tcl_GetAssocData
#  define Tcl_GetAssocData (*LangVptr->V_Tcl_GetAssocData)
#endif

#ifndef Tcl_GetBoolean
#  define Tcl_GetBoolean (*LangVptr->V_Tcl_GetBoolean)
#endif

#ifndef Tcl_GetBooleanFromObj
#  define Tcl_GetBooleanFromObj (*LangVptr->V_Tcl_GetBooleanFromObj)
#endif

#ifndef Tcl_GetChannel
#  define Tcl_GetChannel (*LangVptr->V_Tcl_GetChannel)
#endif

#ifndef Tcl_GetDouble
#  define Tcl_GetDouble (*LangVptr->V_Tcl_GetDouble)
#endif

#ifndef Tcl_GetDoubleFromObj
#  define Tcl_GetDoubleFromObj (*LangVptr->V_Tcl_GetDoubleFromObj)
#endif

#ifndef Tcl_GetIndexFromObj
#  define Tcl_GetIndexFromObj (*LangVptr->V_Tcl_GetIndexFromObj)
#endif

#ifndef Tcl_GetInt
#  define Tcl_GetInt (*LangVptr->V_Tcl_GetInt)
#endif

#ifndef Tcl_GetIntFromObj
#  define Tcl_GetIntFromObj (*LangVptr->V_Tcl_GetIntFromObj)
#endif

#ifndef Tcl_GetLongFromObj
#  define Tcl_GetLongFromObj (*LangVptr->V_Tcl_GetLongFromObj)
#endif

#ifndef Tcl_GetObjResult
#  define Tcl_GetObjResult (*LangVptr->V_Tcl_GetObjResult)
#endif

#ifndef Tcl_GetOpenFile
#  define Tcl_GetOpenFile (*LangVptr->V_Tcl_GetOpenFile)
#endif

#ifndef Tcl_GetResult
#  define Tcl_GetResult (*LangVptr->V_Tcl_GetResult)
#endif

#ifndef Tcl_GetServiceMode
#  define Tcl_GetServiceMode (*LangVptr->V_Tcl_GetServiceMode)
#endif

#ifndef Tcl_GetStringFromObj
#  define Tcl_GetStringFromObj (*LangVptr->V_Tcl_GetStringFromObj)
#endif

#ifndef Tcl_GetVar
#  define Tcl_GetVar (*LangVptr->V_Tcl_GetVar)
#endif

#ifndef Tcl_GetVar2
#  define Tcl_GetVar2 (*LangVptr->V_Tcl_GetVar2)
#endif

#ifndef Tcl_HashStats
#  define Tcl_HashStats (*LangVptr->V_Tcl_HashStats)
#endif

#ifndef Tcl_HideCommand
#  define Tcl_HideCommand (*LangVptr->V_Tcl_HideCommand)
#endif

#ifndef Tcl_IncrRefCount
#  define Tcl_IncrRefCount (*LangVptr->V_Tcl_IncrRefCount)
#endif

#ifndef Tcl_InitHashTable
#  define Tcl_InitHashTable (*LangVptr->V_Tcl_InitHashTable)
#endif

#ifndef Tcl_IntResults
#  define Tcl_IntResults (*LangVptr->V_Tcl_IntResults)
#endif

#ifndef Tcl_IsSafe
#  define Tcl_IsSafe (*LangVptr->V_Tcl_IsSafe)
#endif

#ifndef Tcl_JoinPath
#  define Tcl_JoinPath (*LangVptr->V_Tcl_JoinPath)
#endif

#ifndef Tcl_LinkVar
#  define Tcl_LinkVar (*LangVptr->V_Tcl_LinkVar)
#endif

#ifndef Tcl_ListObjAppendElement
#  define Tcl_ListObjAppendElement (*LangVptr->V_Tcl_ListObjAppendElement)
#endif

#ifndef Tcl_ListObjGetElements
#  define Tcl_ListObjGetElements (*LangVptr->V_Tcl_ListObjGetElements)
#endif

#ifndef Tcl_ListObjIndex
#  define Tcl_ListObjIndex (*LangVptr->V_Tcl_ListObjIndex)
#endif

#ifndef Tcl_ListObjLength
#  define Tcl_ListObjLength (*LangVptr->V_Tcl_ListObjLength)
#endif

#ifndef Tcl_ListObjReplace
#  define Tcl_ListObjReplace (*LangVptr->V_Tcl_ListObjReplace)
#endif

#ifndef Tcl_Merge
#  define Tcl_Merge (*LangVptr->V_Tcl_Merge)
#endif

#ifndef Tcl_NewIntObj
#  define Tcl_NewIntObj (*LangVptr->V_Tcl_NewIntObj)
#endif

#ifndef Tcl_NewListObj
#  define Tcl_NewListObj (*LangVptr->V_Tcl_NewListObj)
#endif

#ifndef Tcl_NewStringObj
#  define Tcl_NewStringObj (*LangVptr->V_Tcl_NewStringObj)
#endif

#ifndef Tcl_NextHashEntry
#  define Tcl_NextHashEntry (*LangVptr->V_Tcl_NextHashEntry)
#endif

#ifndef Tcl_OpenFileChannel
#  define Tcl_OpenFileChannel (*LangVptr->V_Tcl_OpenFileChannel)
#endif

#ifndef Tcl_Panic
#  define Tcl_Panic (*LangVptr->V_Tcl_Panic)
#endif

#ifndef Tcl_PosixError
#  define Tcl_PosixError (*LangVptr->V_Tcl_PosixError)
#endif

#ifndef Tcl_Preserve
#  define Tcl_Preserve (*LangVptr->V_Tcl_Preserve)
#endif

#ifndef Tcl_QueueEvent
#  define Tcl_QueueEvent (*LangVptr->V_Tcl_QueueEvent)
#endif

#ifndef Tcl_Read
#  define Tcl_Read (*LangVptr->V_Tcl_Read)
#endif

#ifndef Tcl_Realloc
#  define Tcl_Realloc (*LangVptr->V_Tcl_Realloc)
#endif

#ifndef Tcl_RegExpRange
#  define Tcl_RegExpRange (*LangVptr->V_Tcl_RegExpRange)
#endif

#ifndef Tcl_Release
#  define Tcl_Release (*LangVptr->V_Tcl_Release)
#endif

#ifndef Tcl_ResetResult
#  define Tcl_ResetResult (*LangVptr->V_Tcl_ResetResult)
#endif

#ifndef Tcl_ResultArg
#  define Tcl_ResultArg (*LangVptr->V_Tcl_ResultArg)
#endif

#ifndef Tcl_Seek
#  define Tcl_Seek (*LangVptr->V_Tcl_Seek)
#endif

#ifndef Tcl_ServiceAll
#  define Tcl_ServiceAll (*LangVptr->V_Tcl_ServiceAll)
#endif

#ifndef Tcl_ServiceEvent
#  define Tcl_ServiceEvent (*LangVptr->V_Tcl_ServiceEvent)
#endif

#ifndef Tcl_SetAssocData
#  define Tcl_SetAssocData (*LangVptr->V_Tcl_SetAssocData)
#endif

#ifndef Tcl_SetBooleanObj
#  define Tcl_SetBooleanObj (*LangVptr->V_Tcl_SetBooleanObj)
#endif

#ifndef Tcl_SetChannelOption
#  define Tcl_SetChannelOption (*LangVptr->V_Tcl_SetChannelOption)
#endif

#ifndef Tcl_SetCommandInfo
#  define Tcl_SetCommandInfo (*LangVptr->V_Tcl_SetCommandInfo)
#endif

#ifndef Tcl_SetDoubleObj
#  define Tcl_SetDoubleObj (*LangVptr->V_Tcl_SetDoubleObj)
#endif

#ifndef Tcl_SetIntObj
#  define Tcl_SetIntObj (*LangVptr->V_Tcl_SetIntObj)
#endif

#ifndef Tcl_SetLongObj
#  define Tcl_SetLongObj (*LangVptr->V_Tcl_SetLongObj)
#endif

#ifndef Tcl_SetMaxBlockTime
#  define Tcl_SetMaxBlockTime (*LangVptr->V_Tcl_SetMaxBlockTime)
#endif

#ifndef Tcl_SetObjResult
#  define Tcl_SetObjResult (*LangVptr->V_Tcl_SetObjResult)
#endif

#ifndef Tcl_SetResult
#  define Tcl_SetResult (*LangVptr->V_Tcl_SetResult)
#endif

#ifndef Tcl_SetServiceMode
#  define Tcl_SetServiceMode (*LangVptr->V_Tcl_SetServiceMode)
#endif

#ifndef Tcl_SetStringObj
#  define Tcl_SetStringObj (*LangVptr->V_Tcl_SetStringObj)
#endif

#ifndef Tcl_SetTimer
#  define Tcl_SetTimer (*LangVptr->V_Tcl_SetTimer)
#endif

#ifndef Tcl_SetVar
#  define Tcl_SetVar (*LangVptr->V_Tcl_SetVar)
#endif

#ifndef Tcl_SetVar2
#  define Tcl_SetVar2 (*LangVptr->V_Tcl_SetVar2)
#endif

#ifndef Tcl_SetVarArg
#  define Tcl_SetVarArg (*LangVptr->V_Tcl_SetVarArg)
#endif

#ifndef Tcl_Sleep
#  define Tcl_Sleep (*LangVptr->V_Tcl_Sleep)
#endif

#ifndef Tcl_SprintfResult
#  define Tcl_SprintfResult (*LangVptr->V_Tcl_SprintfResult)
#endif

#ifndef Tcl_TraceVar
#  define Tcl_TraceVar (*LangVptr->V_Tcl_TraceVar)
#endif

#ifndef Tcl_TraceVar2
#  define Tcl_TraceVar2 (*LangVptr->V_Tcl_TraceVar2)
#endif

#ifndef Tcl_TranslateFileName
#  define Tcl_TranslateFileName (*LangVptr->V_Tcl_TranslateFileName)
#endif

#ifndef Tcl_UnlinkVar
#  define Tcl_UnlinkVar (*LangVptr->V_Tcl_UnlinkVar)
#endif

#ifndef Tcl_UntraceVar
#  define Tcl_UntraceVar (*LangVptr->V_Tcl_UntraceVar)
#endif

#ifndef Tcl_UntraceVar2
#  define Tcl_UntraceVar2 (*LangVptr->V_Tcl_UntraceVar2)
#endif

#ifndef Tcl_WaitForEvent
#  define Tcl_WaitForEvent (*LangVptr->V_Tcl_WaitForEvent)
#endif

#ifndef Tcl_Write
#  define Tcl_Write (*LangVptr->V_Tcl_Write)
#endif

#ifndef Tcl_WrongNumArgs
#  define Tcl_WrongNumArgs (*LangVptr->V_Tcl_WrongNumArgs)
#endif

#ifndef TclpGetTime
#  define TclpGetTime (*LangVptr->V_TclpGetTime)
#endif

#endif /* NO_VTABLES */
#endif /* _LANG_VM */