diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-08 11:02:00 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-08 11:02:00 (GMT) |
commit | 2c80218636b778e62c7c0707c891553b83a79a26 (patch) | |
tree | 50cad0b3dcb10641fde14caaf2993123a9dc5991 /generic/tkIntDecls.h | |
parent | d3271e2d220f2768f99b11887816cacb6223c784 (diff) | |
download | tk-2c80218636b778e62c7c0707c891553b83a79a26.zip tk-2c80218636b778e62c7c0707c891553b83a79a26.tar.gz tk-2c80218636b778e62c7c0707c891553b83a79a26.tar.bz2 |
Move up TkUnusedStubEntry a little.
New test function "menubarheight" for MacOSX (backported from 8.6)
Diffstat (limited to 'generic/tkIntDecls.h')
-rw-r--r-- | generic/tkIntDecls.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/generic/tkIntDecls.h b/generic/tkIntDecls.h index 9dea8d4..d0a091d 100644 --- a/generic/tkIntDecls.h +++ b/generic/tkIntDecls.h @@ -969,9 +969,11 @@ EXTERN char * TkSmoothPrintProc(ClientData clientData, /* Slot 181 is reserved */ /* Slot 182 is reserved */ /* Slot 183 is reserved */ +/* Slot 184 is reserved */ +/* Slot 185 is reserved */ #ifndef TkUnusedStubEntry_TCL_DECLARED #define TkUnusedStubEntry_TCL_DECLARED -/* 184 */ +/* 186 */ EXTERN void TkUnusedStubEntry(void); #endif @@ -1190,7 +1192,9 @@ typedef struct TkIntStubs { VOID *reserved181; VOID *reserved182; VOID *reserved183; - void (*tkUnusedStubEntry) (void); /* 184 */ + VOID *reserved184; + VOID *reserved185; + void (*tkUnusedStubEntry) (void); /* 186 */ } TkIntStubs; extern TkIntStubs *tkIntStubsPtr; @@ -1863,9 +1867,11 @@ extern TkIntStubs *tkIntStubsPtr; /* Slot 181 is reserved */ /* Slot 182 is reserved */ /* Slot 183 is reserved */ +/* Slot 184 is reserved */ +/* Slot 185 is reserved */ #ifndef TkUnusedStubEntry #define TkUnusedStubEntry \ - (tkIntStubsPtr->tkUnusedStubEntry) /* 184 */ + (tkIntStubsPtr->tkUnusedStubEntry) /* 186 */ #endif #endif /* defined(USE_TK_STUBS) && !defined(USE_TK_STUB_PROCS) */ |