diff options
author | Pierre Ossman <ossman@cendio.se> | 2009-03-24 12:29:50 +0000 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2009-03-24 12:29:50 +0000 |
commit | d6d1994cff97bda9602b02e4161aec8774be2d64 (patch) | |
tree | 7ef2e5a44378633485878c9ecc7e5c58243aee13 /win/vncviewer/CConn.h | |
parent | b7c034a7e31024da7538c86b618ac223763d6ca3 (diff) | |
download | tigervnc-d6d1994cff97bda9602b02e4161aec8774be2d64.tar.gz tigervnc-d6d1994cff97bda9602b02e4161aec8774be2d64.zip |
Support for ExtendedDesktopSize and -DesktopSize in the Windows client.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3716 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'win/vncviewer/CConn.h')
-rw-r--r-- | win/vncviewer/CConn.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win/vncviewer/CConn.h b/win/vncviewer/CConn.h index 5dacb1ee..726a6e86 100644 --- a/win/vncviewer/CConn.h +++ b/win/vncviewer/CConn.h @@ -99,6 +99,8 @@ namespace rfb { void bell(); void framebufferUpdateEnd(); void setDesktopSize(int w, int h); + void setExtendedDesktopSize(int reason, int result, int w, int h, + const rfb::ScreenSet& layout); void setCursor(int w, int h, const Point& hotspot, void* data, void* mask); void setName(const char* name); void serverInit(); @@ -144,6 +146,7 @@ namespace rfb { Handle sockEvent; bool reverseConnection; bool requestUpdate; + bool firstUpdate; // Debugging/logging std::list<Rect> debugRects; |