diff options
author | hobbs <hobbs> | 2003-10-13 03:30:04 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2003-10-13 03:30:04 (GMT) |
commit | 36942822bfe420c414a9d44a6cfd15358ab5475b (patch) | |
tree | 7bee99d61ffbebd57a9d253ec34910cc39a59afd /generic/tkIntDecls.h | |
parent | f7654c43f895fd31af766c4c55b0ce763d2f7aba (diff) | |
download | tk-36942822bfe420c414a9d44a6cfd15358ab5475b.zip tk-36942822bfe420c414a9d44a6cfd15358ab5475b.tar.gz tk-36942822bfe420c414a9d44a6cfd15358ab5475b.tar.bz2 |
* generic/tkInt.h: move TkGetOptionSpec to stubs intDecls
* generic/tkIntDecls.h:
* generic/tkInt.decls:
* generic/tkStubInit.c:
Diffstat (limited to 'generic/tkIntDecls.h')
-rw-r--r-- | generic/tkIntDecls.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/generic/tkIntDecls.h b/generic/tkIntDecls.h index d50dab4..ac3093e 100644 --- a/generic/tkIntDecls.h +++ b/generic/tkIntDecls.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkIntDecls.h,v 1.22 2003/01/22 14:33:00 dkf Exp $ + * RCS: @(#) $Id: tkIntDecls.h,v 1.22.2.1 2003/10/13 03:30:05 hobbs Exp $ */ #ifndef _TKINTDECLS @@ -559,6 +559,9 @@ EXTERN void TkStylePkgFree _ANSI_ARGS_((TkMainInfo * mainPtr)); /* 148 */ EXTERN Tk_Window TkToplevelWindowForCommand _ANSI_ARGS_(( Tcl_Interp * interp, CONST char * cmdName)); +/* 149 */ +EXTERN CONST Tk_OptionSpec * TkGetOptionSpec _ANSI_ARGS_((CONST char * name, + Tk_OptionTable optionTable)); typedef struct TkIntStubs { int magic; @@ -834,6 +837,7 @@ typedef struct TkIntStubs { void (*tkStylePkgInit) _ANSI_ARGS_((TkMainInfo * mainPtr)); /* 146 */ void (*tkStylePkgFree) _ANSI_ARGS_((TkMainInfo * mainPtr)); /* 147 */ Tk_Window (*tkToplevelWindowForCommand) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * cmdName)); /* 148 */ + CONST Tk_OptionSpec * (*tkGetOptionSpec) _ANSI_ARGS_((CONST char * name, Tk_OptionTable optionTable)); /* 149 */ } TkIntStubs; #ifdef __cplusplus @@ -1543,6 +1547,10 @@ extern TkIntStubs *tkIntStubsPtr; #define TkToplevelWindowForCommand \ (tkIntStubsPtr->tkToplevelWindowForCommand) /* 148 */ #endif +#ifndef TkGetOptionSpec +#define TkGetOptionSpec \ + (tkIntStubsPtr->tkGetOptionSpec) /* 149 */ +#endif #endif /* defined(USE_TK_STUBS) && !defined(USE_TK_STUB_PROCS) */ |