summaryrefslogtreecommitdiffstats
path: root/win/tkWinInt.h
diff options
context:
space:
mode:
authorhobbs <hobbs>2005-06-01 17:54:16 (GMT)
committerhobbs <hobbs>2005-06-01 17:54:16 (GMT)
commite0309015545d3beaab3e885dc0198de4a0fea135 (patch)
treed0ee4752b3e2a6ebd6ddb0cb7aeb6d7a56f0cce2 /win/tkWinInt.h
parent7e9cd211c2388b032be6325325a6e9c329888fde (diff)
downloadtk-e0309015545d3beaab3e885dc0198de4a0fea135.zip
tk-e0309015545d3beaab3e885dc0198de4a0fea135.tar.gz
tk-e0309015545d3beaab3e885dc0198de4a0fea135.tar.bz2
* win/tkWinInt.h: added private decls of Tk_GetEmbeddedMenuHWND,
Tk_GetMenuHWND, TkWinCleanupContainerList, and TkpWmGetState to that are used across source files.
Diffstat (limited to 'win/tkWinInt.h')
-rw-r--r--win/tkWinInt.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/win/tkWinInt.h b/win/tkWinInt.h
index 773807d..50bbd52 100644
--- a/win/tkWinInt.h
+++ b/win/tkWinInt.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: tkWinInt.h,v 1.23 2005/01/31 04:08:32 chengyemao Exp $
+ * RCS: @(#) $Id: tkWinInt.h,v 1.24 2005/06/01 17:54:16 hobbs Exp $
*/
#ifndef _TKWININT
@@ -173,8 +173,16 @@ EXTERN HICON TkWinGetIcon(Tk_Window tkw, DWORD iconsize);
/*
* Used by tkWinX.c on for certain system display change messages
+ * and cleanup up containers
*/
EXTERN void TkWinDisplayChanged(Display *display);
+void TkWinCleanupContainerList(void);
+
+/*
+ * Used by tkWinWm.c for embedded menu handling. May become public.
+ */
+EXTERN HWND Tk_GetMenuHWND(Tk_Window tkwin);
+EXTERN HWND Tk_GetEmbeddedMenuHWND(Tk_Window tkwin);
/*
* The following structure keeps track of whether we are using the
@@ -232,5 +240,5 @@ long TkpWinToplevelIsControlledByWm _ANSI_ARGS_((TkWindow *winPtr));
long TkpWinToplevelMove _ANSI_ARGS_((TkWindow *winPtr, int x, int y));
long TkpWinToplevelOverrideRedirect _ANSI_ARGS_((TkWindow *winPtr, int reqValue));
void TkpWinToplevelDetachWindow _ANSI_ARGS_((TkWindow *winPtr));
+int TkpWmGetState _ANSI_ARGS_((TkWindow *winPtr));
#endif /* _TKWININT */
-