summaryrefslogtreecommitdiff
path: root/src/os_win32.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-03-19 14:48:29 +0100
committerBram Moolenaar <Bram@vim.org>2013-03-19 14:48:29 +0100
commitaf62ff3696514a4f1b595629bcfa584748bc29ce (patch)
tree3cd451ad817d37bead9c136137c90267ca5c5d1c /src/os_win32.h
parent0c279bbb9c2b9fce1c837a35ace2d4644eced0b8 (diff)
downloadvim-git-af62ff3696514a4f1b595629bcfa584748bc29ce.tar.gz
updated for version 7.3.870v7.3.870
Problem: Compiler warnings when using MingW 4.5.3. Solution: Do not use MAKEINTRESOURCE. Adjust #if. (Ken Takata)
Diffstat (limited to 'src/os_win32.h')
-rw-r--r--src/os_win32.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_win32.h b/src/os_win32.h
index 71b760956..f672ea803 100644
--- a/src/os_win32.h
+++ b/src/os_win32.h
@@ -204,7 +204,7 @@ Trace(char *pszFormat, ...);
/* Enable common dialogs input unicode from IME if posible. */
#ifdef FEAT_MBYTE
/* The variables are defined in os_win32.c. */
-extern LRESULT (WINAPI *pDispatchMessage)(LPMSG);
+extern LRESULT (WINAPI *pDispatchMessage)(CONST MSG *);
extern BOOL (WINAPI *pGetMessage)(LPMSG, HWND, UINT, UINT);
extern BOOL (WINAPI *pIsDialogMessage)(HWND, LPMSG);
extern BOOL (WINAPI *pPeekMessage)(LPMSG, HWND, UINT, UINT, UINT);