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
|
#include "tkbltVector.h"
/* !BEGIN!: Do not edit below this line. */
const TkbltStubs tkbltStubs = {
TCL_STUB_MAGIC,
0,
Blt_CreateVector, /* 0 */
Blt_CreateVector2, /* 1 */
Blt_DeleteVectorByName, /* 2 */
Blt_DeleteVector, /* 3 */
Blt_GetVector, /* 4 */
Blt_GetVectorFromObj, /* 5 */
Blt_ResetVector, /* 6 */
Blt_ResizeVector, /* 7 */
Blt_VectorExists, /* 8 */
Blt_VectorExists2, /* 9 */
Blt_AllocVectorId, /* 10 */
Blt_GetVectorById, /* 11 */
Blt_SetVectorChangedProc, /* 12 */
Blt_FreeVectorId, /* 13 */
Blt_NameOfVectorId, /* 14 */
Blt_NameOfVector, /* 15 */
Blt_ExprVector, /* 16 */
Blt_InstallIndexProc, /* 17 */
Blt_VecMin, /* 18 */
Blt_VecMax, /* 19 */
};
/* !END!: Do not edit above this line. */
|