diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-01-30 21:38:25 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-01-30 21:38:25 (GMT) |
commit | 0f87792101feffd4d3539b677e60c5df860de6a4 (patch) | |
tree | 27ededf8f617dae37d76866a4b27f9e2f4aa4a48 /generic | |
parent | 0a085d9ed4007b80d00d1c4aebc1e57f9f7465f1 (diff) | |
download | tk-0f87792101feffd4d3539b677e60c5df860de6a4.zip tk-0f87792101feffd4d3539b677e60c5df860de6a4.tar.gz tk-0f87792101feffd4d3539b677e60c5df860de6a4.tar.bz2 |
Re-generate dummy stub entries (accidently removed in previous commit)
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkIntDecls.h | 3 | ||||
-rw-r--r-- | generic/tkStubInit.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/generic/tkIntDecls.h b/generic/tkIntDecls.h index bd5ca91..a07eb36 100644 --- a/generic/tkIntDecls.h +++ b/generic/tkIntDecls.h @@ -707,6 +707,7 @@ typedef struct TkIntStubs { void (*reserved121)(void); #endif /* WIN */ #ifdef MAC_OSX_TK /* AQUA */ + void (*reserved121)(void); /* Dummy entry for stubs table backwards compatibility */ Pixmap (*tkpCreateNativeBitmap) (Display *display, const void *source); /* 121 */ #endif /* AQUA */ #if !(defined(_WIN32) || defined(MAC_OSX_TK)) /* X11 */ @@ -716,6 +717,7 @@ typedef struct TkIntStubs { void (*reserved122)(void); #endif /* WIN */ #ifdef MAC_OSX_TK /* AQUA */ + void (*reserved122)(void); /* Dummy entry for stubs table backwards compatibility */ void (*tkpDefineNativeBitmaps) (void); /* 122 */ #endif /* AQUA */ void (*reserved123)(void); @@ -726,6 +728,7 @@ typedef struct TkIntStubs { void (*reserved124)(void); #endif /* WIN */ #ifdef MAC_OSX_TK /* AQUA */ + void (*reserved124)(void); /* Dummy entry for stubs table backwards compatibility */ Pixmap (*tkpGetNativeAppBitmap) (Display *display, const char *name, int *width, int *height); /* 124 */ #endif /* AQUA */ void (*reserved125)(void); diff --git a/generic/tkStubInit.c b/generic/tkStubInit.c index ef5873c..4e7d270 100644 --- a/generic/tkStubInit.c +++ b/generic/tkStubInit.c @@ -426,6 +426,7 @@ static const TkIntStubs tkIntStubs = { 0, /* 121 */ #endif /* WIN */ #ifdef MAC_OSX_TK /* AQUA */ + 0, /* 121 */ /* Dummy entry for stubs table backwards compatibility */ TkpCreateNativeBitmap, /* 121 */ #endif /* AQUA */ #if !(defined(_WIN32) || defined(MAC_OSX_TK)) /* X11 */ @@ -435,6 +436,7 @@ static const TkIntStubs tkIntStubs = { 0, /* 122 */ #endif /* WIN */ #ifdef MAC_OSX_TK /* AQUA */ + 0, /* 122 */ /* Dummy entry for stubs table backwards compatibility */ TkpDefineNativeBitmaps, /* 122 */ #endif /* AQUA */ 0, /* 123 */ @@ -445,6 +447,7 @@ static const TkIntStubs tkIntStubs = { 0, /* 124 */ #endif /* WIN */ #ifdef MAC_OSX_TK /* AQUA */ + 0, /* 124 */ /* Dummy entry for stubs table backwards compatibility */ TkpGetNativeAppBitmap, /* 124 */ #endif /* AQUA */ 0, /* 125 */ |