171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
-
+
-
+
|
/* Slot 70 is reserved */
/* Slot 71 is reserved */
/* Slot 72 is reserved */
/* Slot 73 is reserved */
/* 74 */
TCLAPI void TclpFree(void *ptr);
/* 75 */
TCLAPI Tcl_WideUInt TclpGetClicks(void);
TCLAPI unsigned long long TclpGetClicks(void);
/* 76 */
TCLAPI Tcl_WideUInt TclpGetSeconds(void);
TCLAPI unsigned long long TclpGetSeconds(void);
/* Slot 77 is reserved */
/* Slot 78 is reserved */
/* Slot 79 is reserved */
/* Slot 80 is reserved */
/* 81 */
TCLAPI void * TclpRealloc(void *ptr, size_t size);
/* Slot 82 is reserved */
|
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
|
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
|
-
-
+
+
|
void (*reserved68)(void);
void * (*tclpAlloc) (size_t size); /* 69 */
void (*reserved70)(void);
void (*reserved71)(void);
void (*reserved72)(void);
void (*reserved73)(void);
void (*tclpFree) (void *ptr); /* 74 */
Tcl_WideUInt (*tclpGetClicks) (void); /* 75 */
Tcl_WideUInt (*tclpGetSeconds) (void); /* 76 */
unsigned long long (*tclpGetClicks) (void); /* 75 */
unsigned long long (*tclpGetSeconds) (void); /* 76 */
void (*reserved77)(void);
void (*reserved78)(void);
void (*reserved79)(void);
void (*reserved80)(void);
void * (*tclpRealloc) (void *ptr, size_t size); /* 81 */
void (*reserved82)(void);
void (*reserved83)(void);
|