comparison src/os_win32.h @ 4238:26e59a39fdd9 v7.3.870

updated for version 7.3.870 Problem: Compiler warnings when using MingW 4.5.3. Solution: Do not use MAKEINTRESOURCE. Adjust #if. (Ken Takata)
author Bram Moolenaar <bram@vim.org>
date Tue, 19 Mar 2013 14:48:29 +0100
parents e6d8b44065bc
children 04736b4030ec
comparison
equal deleted inserted replaced
4237:6b0aa05d4e7a 4238:26e59a39fdd9
202 #ifndef PROTO 202 #ifndef PROTO
203 203
204 /* Enable common dialogs input unicode from IME if posible. */ 204 /* Enable common dialogs input unicode from IME if posible. */
205 #ifdef FEAT_MBYTE 205 #ifdef FEAT_MBYTE
206 /* The variables are defined in os_win32.c. */ 206 /* The variables are defined in os_win32.c. */
207 extern LRESULT (WINAPI *pDispatchMessage)(LPMSG); 207 extern LRESULT (WINAPI *pDispatchMessage)(CONST MSG *);
208 extern BOOL (WINAPI *pGetMessage)(LPMSG, HWND, UINT, UINT); 208 extern BOOL (WINAPI *pGetMessage)(LPMSG, HWND, UINT, UINT);
209 extern BOOL (WINAPI *pIsDialogMessage)(HWND, LPMSG); 209 extern BOOL (WINAPI *pIsDialogMessage)(HWND, LPMSG);
210 extern BOOL (WINAPI *pPeekMessage)(LPMSG, HWND, UINT, UINT, UINT); 210 extern BOOL (WINAPI *pPeekMessage)(LPMSG, HWND, UINT, UINT, UINT);
211 #else 211 #else
212 # define pDispatchMessage DispatchMessage 212 # define pDispatchMessage DispatchMessage