diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-19 21:23:36 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-19 21:23:36 +0000 |
commit | 8424a624ce1c38716deabd47f4da23f1e81614bd (patch) | |
tree | 908266a65b60968cb3b662765198239944b2a365 /src/gui_w32.c | |
parent | c1e37901fc8486c9960d7290e521ba51e292e94b (diff) | |
download | vim-git-8424a624ce1c38716deabd47f4da23f1e81614bd.tar.gz |
updated for version 7.0e03v7.0e03
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r-- | src/gui_w32.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index be5a78ba9..ac05ee9a1 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -185,6 +185,9 @@ static void make_tooltip __ARGS((BalloonEval *beval, char *text, POINT pt)); static void delete_tooltip __ARGS((BalloonEval *beval)); static VOID CALLBACK BevalTimerProc __ARGS((HWND hwnd, UINT uMsg, UINT idEvent, DWORD dwTime)); +#ifndef UINT_PTR +# define UINT_PTR UINT +#endif static BalloonEval *cur_beval = NULL; static UINT_PTR BevalTimerId = 0; static DWORD LastActivity = 0; |