diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-24 17:18:42 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-24 17:18:42 +0100 |
commit | 264b74fa545edfb92c0d7d08a02c26331cc5b168 (patch) | |
tree | 2cd0e8517c498f4ce1442492572032be9815654d /src/os_win32.h | |
parent | a12a161b8ce09d024ed71c2134149fa323f8ee8e (diff) | |
download | vim-git-264b74fa545edfb92c0d7d08a02c26331cc5b168.tar.gz |
patch 8.1.0810: too many #ifdefsv8.1.0810
Problem: Too many #ifdefs.
Solution: Graduate FEAT_MBYTE, part 4.
Diffstat (limited to 'src/os_win32.h')
-rw-r--r-- | src/os_win32.h | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/src/os_win32.h b/src/os_win32.h index 37f6106f7..6c4a349f9 100644 --- a/src/os_win32.h +++ b/src/os_win32.h @@ -213,14 +213,7 @@ Trace(char *pszFormat, ...); #endif /* Enable common dialogs input unicode from IME if possible. */ -#ifdef FEAT_MBYTE -# define pDispatchMessage DispatchMessageW -# define pGetMessage GetMessageW -# define pIsDialogMessage IsDialogMessageW -# define pPeekMessage PeekMessageW -#else -# define pDispatchMessage DispatchMessage -# define pGetMessage GetMessage -# define pIsDialogMessage IsDialogMessage -# define pPeekMessage PeekMessage -#endif +#define pDispatchMessage DispatchMessageW +#define pGetMessage GetMessageW +#define pIsDialogMessage IsDialogMessageW +#define pPeekMessage PeekMessageW |