1/*
2 * xotclStubInit.c --
3 *
4 *	This file contains the initializers for the XOTcl stub vectors.
5 *
6 * Copyright (c) 1998-1999 by XXX
7 *
8 * See the file "tcl-license.terms" for information on usage and redistribution
9 * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
10 *
11 */
12
13#include "xotclInt.h"
14
15/*
16 * Remove macros that will interfere with the definitions below.
17 */
18
19/*
20 * WARNING: The contents of this file is automatically generated by the
21 * tools/genStubs.tcl script. Any modifications to the function declarations
22 * below should be made in the generic/tcl.decls script.
23 */
24
25/* !BEGIN!: Do not edit below this line. */
26
27XotclIntStubs xotclIntStubs = {
28    TCL_STUB_MAGIC,
29    NULL,
30};
31
32static XotclStubHooks xotclStubHooks = {
33    &xotclIntStubs
34};
35
36XotclStubs xotclStubs = {
37    TCL_STUB_MAGIC,
38    &xotclStubHooks,
39    Xotcl_Init, /* 0 */
40    NULL, /* 1 */
41    XOTclIsClass, /* 2 */
42    NULL, /* 3 */
43    XOTclGetObject, /* 4 */
44    XOTclGetClass, /* 5 */
45    XOTclCreateObject, /* 6 */
46    NULL, /* 7 */
47    XOTclCreateClass, /* 8 */
48    XOTclDeleteObject, /* 9 */
49    XOTclDeleteClass, /* 10 */
50    XOTclAddPMethod, /* 11 */
51    XOTclAddIMethod, /* 12 */
52    XOTclRemovePMethod, /* 13 */
53    XOTclRemoveIMethod, /* 14 */
54    XOTclOSetInstVar, /* 15 */
55    XOTclOGetInstVar, /* 16 */
56    XOTclInstVar, /* 17 */
57    NULL, /* 18 */
58    XOTclOSetInstVar2, /* 19 */
59    XOTclOGetInstVar2, /* 20 */
60    XOTclUnsetInstVar2, /* 21 */
61    XOTcl_TraceObjCmd, /* 22 */
62    XOTclErrMsg, /* 23 */
63    XOTclVarErrMsg, /* 24 */
64    XOTclErrInProc, /* 25 */
65    XOTclObjErrArgCnt, /* 26 */
66    XOTclErrBadVal_, /* 27 */
67    XOTclObjErrType, /* 28 */
68    XOTclStackDump, /* 29 */
69    XOTclCallStackDump, /* 30 */
70    XOTclDeprecatedMsg, /* 31 */
71    XOTclSetObjClientData, /* 32 */
72    XOTclGetObjClientData, /* 33 */
73    XOTclSetClassClientData, /* 34 */
74    XOTclGetClassClientData, /* 35 */
75    XOTclRequireObjNamespace, /* 36 */
76    XOTclErrBadVal, /* 37 */
77    XOTclNextObjCmd, /* 38 */
78    XOTclCallMethodWithArgs, /* 39 */
79};
80
81/* !END!: Do not edit above this line. */
82