diff options
author | hobbs <hobbs> | 2004-05-03 22:40:30 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2004-05-03 22:40:30 (GMT) |
commit | 18b9dacbd8e5429295b69a3d28a60c08f156bcd7 (patch) | |
tree | 0991e2d295fa96e9ed3e196167233c1475098e3e /win/tkWinInt.h | |
parent | 012009c9f7e06ab2a1e19287e28617cd427f77ed (diff) | |
download | tk-18b9dacbd8e5429295b69a3d28a60c08f156bcd7.zip tk-18b9dacbd8e5429295b69a3d28a60c08f156bcd7.tar.gz tk-18b9dacbd8e5429295b69a3d28a60c08f156bcd7.tar.bz2 |
* win/tkWinX.c: fix drawing of unicode chars in menu
* win/tkWinInt.h (TkWinProcs): titles. [Bug #904371] (riefenstahl)
* win/tkWinMenu.c (ReconfigureWindowsMenu):
Diffstat (limited to 'win/tkWinInt.h')
-rw-r--r-- | win/tkWinInt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/tkWinInt.h b/win/tkWinInt.h index cbe2290..17e8d14 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.14 2003/02/26 02:47:05 hobbs Exp $ + * RCS: @(#) $Id: tkWinInt.h,v 1.15 2004/05/03 22:40:30 hobbs Exp $ */ #ifndef _TKWININT @@ -187,6 +187,8 @@ typedef struct TkWinProcs { LPCTSTR lpWindowName, DWORD dwStyle, int x, int y, int nWidth, int nHeight, HWND hWndParent, HMENU hMenu, HINSTANCE hInstance, LPVOID lpParam); + BOOL (WINAPI *insertMenu)(HMENU hMenu, UINT uPosition, UINT uFlags, + UINT uIDNewItem, LPCTSTR lpNewItem); } TkWinProcs; EXTERN TkWinProcs *tkWinProcs; |