diff options
author | nijtmans <nijtmans> | 2009-12-02 22:20:01 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2009-12-02 22:20:01 (GMT) |
commit | 11451aec4915dc62cc84ee9caf897dc10818e8c9 (patch) | |
tree | a187e4ac515a9eb25c2ee05791fd6a2c2347b089 /generic/tkInt.decls | |
parent | 87bdd529d677fe0457e68a25ca129ffd59973fab (diff) | |
download | tk-11451aec4915dc62cc84ee9caf897dc10818e8c9.zip tk-11451aec4915dc62cc84ee9caf897dc10818e8c9.tar.gz tk-11451aec4915dc62cc84ee9caf897dc10818e8c9.tar.bz2 |
doc/GetHINSTANCE.3 correct mentioned header file
make TkWinChildProc available in private
stub table. [Bug #220600] and [Bug #220690].
Diffstat (limited to 'generic/tkInt.decls')
-rw-r--r-- | generic/tkInt.decls | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/generic/tkInt.decls b/generic/tkInt.decls index a254c26..cd0e324 100644 --- a/generic/tkInt.decls +++ b/generic/tkInt.decls @@ -10,9 +10,11 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tkInt.decls,v 1.44.2.2 2009/06/27 19:53:16 nijtmans Exp $ +# RCS: @(#) $Id: tkInt.decls,v 1.44.2.3 2009/12/02 22:20:01 nijtmans Exp $ library tk + +############################################################################## # Define the unsupported generic interfaces. @@ -568,7 +570,7 @@ declare 180 generic { char *TkSmoothPrintProc(ClientData clientData, Tk_Window tkwin, char *widgRec, int offset, Tcl_FreeProc **freeProcPtr) } - + ############################################################################## # Define the platform specific internal Tcl interface. These functions are @@ -743,6 +745,13 @@ declare 35 win { int TkWinGetPlatformTheme(void) } +# new for 8.6 + +declare 36 win { + LRESULT CALLBACK TkWinChildProc(HWND hwnd, + UINT message, WPARAM wParam, LPARAM lParam) +} + ################################ # Aqua specific functions @@ -1630,3 +1639,7 @@ declare 90 aqua { declare 91 aqua { int XSync(Display *display, Bool flag) } + +# Local Variables: +# mode: tcl +# End: |