diff options
Diffstat (limited to 'generic/tkStubInit.c')
-rw-r--r-- | generic/tkStubInit.c | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/generic/tkStubInit.c b/generic/tkStubInit.c index 43a081f..e92d4f5 100644 --- a/generic/tkStubInit.c +++ b/generic/tkStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkStubInit.c,v 1.36 2002/06/15 00:21:42 hobbs Exp $ + * RCS: @(#) $Id: tkStubInit.c,v 1.37 2002/06/18 23:51:46 dkf Exp $ */ #include "tkInt.h" @@ -281,6 +281,8 @@ TkIntStubs tkIntStubs = { #ifdef MAC_TCL TkSubtractRegion, /* 145 */ #endif /* MAC_TCL */ + TkStylePkgInit, /* 146 */ + TkStylePkgFree, /* 147 */ }; TkIntPlatStubs tkIntPlatStubs = { @@ -899,6 +901,22 @@ TkStubs tkStubs = { Tk_PhotoPutBlock, /* 246 */ Tk_PhotoPutZoomedBlock, /* 247 */ Tk_CollapseMotionEvents, /* 248 */ + Tk_RegisterStyleEngine, /* 249 */ + Tk_GetStyleEngine, /* 250 */ + Tk_RegisterStyledElement, /* 251 */ + Tk_GetElementId, /* 252 */ + Tk_CreateStyle, /* 253 */ + Tk_GetStyle, /* 254 */ + Tk_FreeStyle, /* 255 */ + Tk_NameOfStyle, /* 256 */ + Tk_AllocStyleFromObj, /* 257 */ + Tk_GetStyleFromObj, /* 258 */ + Tk_FreeStyleFromObj, /* 259 */ + Tk_GetStyledElement, /* 260 */ + Tk_GetElementSize, /* 261 */ + Tk_GetElementBox, /* 262 */ + Tk_GetElementBorderWidth, /* 263 */ + Tk_DrawElement, /* 264 */ }; /* !END!: Do not edit above this line. */ |