Fixed passing of mouse wheel events.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2096 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/win/vncviewer/DesktopWindow.h b/win/vncviewer/DesktopWindow.h
index f8d3ac3..6e7a1d0 100644
--- a/win/vncviewer/DesktopWindow.h
+++ b/win/vncviewer/DesktopWindow.h
@@ -56,6 +56,10 @@
// - Window message handling procedure for the framebuffer window
LRESULT processFrameMessage(UINT msg, WPARAM wParam, LPARAM lParam);
+ // - Separate message handling procedure for mouse events
+ // It's called from both processMessage() and processFrameMessage()
+ void processMouseMessage(UINT msg, WPARAM wParam, LPARAM lParam);
+
// - Determine the native pixel format of the window
// This can (and often will) differ from the PixelBuffer format
PixelFormat getNativePF() const;