diff options
author | Constantin Kaplinsky <const@tightvnc.com> | 2006-09-14 05:14:43 +0000 |
---|---|---|
committer | Constantin Kaplinsky <const@tightvnc.com> | 2006-09-14 05:14:43 +0000 |
commit | d5f5927f682abed3f77db64a5f6467c0847cf4e9 (patch) | |
tree | f7929ba15590ba246494b7da0652a149826ef7c5 /win/vncviewer/DesktopWindow.h | |
parent | adc4537ced5278db0431f5b36c74f49649c2aaec (diff) | |
download | tigervnc-d5f5927f682abed3f77db64a5f6467c0847cf4e9.tar.gz tigervnc-d5f5927f682abed3f77db64a5f6467c0847cf4e9.zip |
Fixed passing of mouse wheel events.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2096 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'win/vncviewer/DesktopWindow.h')
-rw-r--r-- | win/vncviewer/DesktopWindow.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/win/vncviewer/DesktopWindow.h b/win/vncviewer/DesktopWindow.h index f8d3ac32..6e7a1d0b 100644 --- a/win/vncviewer/DesktopWindow.h +++ b/win/vncviewer/DesktopWindow.h @@ -56,6 +56,10 @@ namespace rfb { // - 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; |