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
|
/*
* trfIntDecls.h --
*
* This file contains the declarations for all unsupported
* functions that are exported by the Tcl library. These
* interfaces are not guaranteed to remain the same between
* versions. Use at your own risk.
*
*/
#ifndef _TRFINTDECLS
#define _TRFINTDECLS
/*
* WARNING: This file is automatically generated by the tools/genStubs.tcl
* script. Any modifications to the function declarations below should be made
* in the generic/tclInt.decls script.
*/
/* !BEGIN!: Do not edit below this line. */
/*
* Exported function declarations:
*/
typedef struct TrfIntStubs {
int magic;
struct TrfIntStubHooks *hooks;
} TrfIntStubs;
#ifdef __cplusplus
extern "C" {
#endif
extern TrfIntStubs *trfIntStubsPtr;
#ifdef __cplusplus
}
#endif
#if defined(USE_TRF_STUBS) && !defined(USE_TRF_STUB_PROCS)
/*
* Inline function declarations:
*/
#endif /* defined(USE_TRF_STUBS) && !defined(USE_TRF_STUB_PROCS) */
/* !END!: Do not edit above this line. */
#endif /* _TRFINTDECLS */
|