summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-01-09 15:23:11 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-01-09 15:23:11 +0000
commitd96fa887439da5b4f10c7f32f6de6a22b6a2cd9d (patch)
tree769b1f92a3b00485a693af665288c75afde177e2 /src
parentd16dbc1486b18d6b6bce6e16d97556cf9f22a219 (diff)
Fix WIN32 build.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1922 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Fl_win32.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx
index ebc53a1a3..d9dc2e87b 100644
--- a/src/Fl_win32.cxx
+++ b/src/Fl_win32.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_win32.cxx,v 1.33.2.37.2.14 2002/01/07 20:40:02 easysw Exp $"
+// "$Id: Fl_win32.cxx,v 1.33.2.37.2.15 2002/01/09 15:23:09 easysw Exp $"
//
// WIN32-specific code for the Fast Light Tool Kit (FLTK).
//
@@ -41,9 +41,10 @@
# include <unistd.h>
#else
# include <winsock.h>
-//# include <winuser.h>
#endif
#include <ctype.h>
+#include <winuser.h>
+#include <commctrl.h>
//
@@ -537,7 +538,7 @@ static LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPar
tme.dwFlags = TME_LEAVE;
tme.hwndTrack = hWnd;
- TrackMouseEvent(&tme);
+ _TrackMouseEvent(&tme);
}
mouse_event(window, 3, 0, wParam, lParam);
@@ -1048,5 +1049,5 @@ void Fl_Window::make_current() {
}
//
-// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.14 2002/01/07 20:40:02 easysw Exp $".
+// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.15 2002/01/09 15:23:09 easysw Exp $".
//