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
|
#ifndef _LANG_VM
#define _LANG_VM
#include "Lang_f.h"
#ifndef NO_VTABLES
#define LangOptionCommand (*LangVptr->V_LangOptionCommand)
#ifndef LangBadFile
# define LangBadFile (*LangVptr->V_LangBadFile)
#endif
#ifndef LangCmpArg
# define LangCmpArg (*LangVptr->V_LangCmpArg)
#endif
#ifndef LangCmpOpt
# define LangCmpOpt (*LangVptr->V_LangCmpOpt)
#endif
#ifndef LangCopyArg
# define LangCopyArg (*LangVptr->V_LangCopyArg)
#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 LangFreeArg
# define LangFreeArg (*LangVptr->V_LangFreeArg)
#endif
#ifndef LangFreeVar
# define LangFreeVar (*LangVptr->V_LangFreeVar)
#endif
#ifndef LangLibraryDir
# define LangLibraryDir (*LangVptr->V_LangLibraryDir)
#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 LangObjArg
# define LangObjArg (*LangVptr->V_LangObjArg)
#endif
#ifndef LangOldSetArg
# define LangOldSetArg (*LangVptr->V_LangOldSetArg)
#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 LangSetDefault
# define LangSetDefault (*LangVptr->V_LangSetDefault)
#endif
#ifndef LangSetDouble
# define LangSetDouble (*LangVptr->V_LangSetDouble)
#endif
#ifndef LangSetInt
# define LangSetInt (*LangVptr->V_LangSetInt)
#endif
#ifndef LangSetObj
# define LangSetObj (*LangVptr->V_LangSetObj)
#endif
#ifndef LangSetString
# define LangSetString (*LangVptr->V_LangSetString)
#endif
#ifndef LangSetVar
# define LangSetVar (*LangVptr->V_LangSetVar)
#endif
#ifndef LangString
# define LangString (*LangVptr->V_LangString)
#endif
#ifndef LangStringMatch
# define LangStringMatch (*LangVptr->V_LangStringMatch)
#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_OldArgResult
# define Lang_OldArgResult (*LangVptr->V_Lang_OldArgResult)
#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 Tcl_AddErrorInfo
# define Tcl_AddErrorInfo (*LangVptr->V_Tcl_AddErrorInfo)
#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_BackgroundError
# define Tcl_BackgroundError (*LangVptr->V_Tcl_BackgroundError)
#endif
#ifndef Tcl_CallWhenDeleted
# define Tcl_CallWhenDeleted (*LangVptr->V_Tcl_CallWhenDeleted)
#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_CreateInterp
# define Tcl_CreateInterp (*LangVptr->V_Tcl_CreateInterp)
#endif
#ifndef Tcl_CreateObjCommand
# define Tcl_CreateObjCommand (*LangVptr->V_Tcl_CreateObjCommand)
#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_DStringGetResult
# define Tcl_DStringGetResult (*LangVptr->V_Tcl_DStringGetResult)
#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_DbCkfree
# define Tcl_DbCkfree (*LangVptr->V_Tcl_DbCkfree)
#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_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_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_FirstHashEntry
# define Tcl_FirstHashEntry (*LangVptr->V_Tcl_FirstHashEntry)
#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_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_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_NewBooleanObj
# define Tcl_NewBooleanObj (*LangVptr->V_Tcl_NewBooleanObj)
#endif
#ifndef Tcl_NewDoubleObj
# define Tcl_NewDoubleObj (*LangVptr->V_Tcl_NewDoubleObj)
#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_NewLongObj
# define Tcl_NewLongObj (*LangVptr->V_Tcl_NewLongObj)
#endif
#ifndef Tcl_NewObj
# define Tcl_NewObj (*LangVptr->V_Tcl_NewObj)
#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_PosixError
# define Tcl_PosixError (*LangVptr->V_Tcl_PosixError)
#endif
#ifndef Tcl_Preserve
# define Tcl_Preserve (*LangVptr->V_Tcl_Preserve)
#endif
#ifndef Tcl_Read
# define Tcl_Read (*LangVptr->V_Tcl_Read)
#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_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_SetObjResult
# define Tcl_SetObjResult (*LangVptr->V_Tcl_SetObjResult)
#endif
#ifndef Tcl_SetResult
# define Tcl_SetResult (*LangVptr->V_Tcl_SetResult)
#endif
#ifndef Tcl_SetStringObj
# define Tcl_SetStringObj (*LangVptr->V_Tcl_SetStringObj)
#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_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_Write
# define Tcl_Write (*LangVptr->V_Tcl_Write)
#endif
#ifndef Tcl_WrongNumArgs
# define Tcl_WrongNumArgs (*LangVptr->V_Tcl_WrongNumArgs)
#endif
#endif /* NO_VTABLES */
#endif /* _LANG_VM */
|