diff options
author | Constantin Kaplinsky <const@tightvnc.com> | 2007-04-05 08:43:25 +0000 |
---|---|---|
committer | Constantin Kaplinsky <const@tightvnc.com> | 2007-04-05 08:43:25 +0000 |
commit | dafbb01146a5cc69add5ec510fa73a867f0962bb (patch) | |
tree | b64c999de91af23cbbd8da43d556f0d577c8128e /common/rfb/SMsgHandler.h | |
parent | b50b29ed2f5b0a61504b832a030acac51f73434a (diff) | |
download | tigervnc-dafbb01146a5cc69add5ec510fa73a867f0962bb.tar.gz tigervnc-dafbb01146a5cc69add5ec510fa73a867f0962bb.zip |
Initial implementation of continuous updates in the server code. This code does not handle framebuffer size changes properly yet. Also, the server does not send the client EndOfContinuousUpdates message yet (documented in doc/rfbproto.tex).
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2251 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/rfb/SMsgHandler.h')
-rw-r--r-- | common/rfb/SMsgHandler.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/rfb/SMsgHandler.h b/common/rfb/SMsgHandler.h index cf3377d5..ff742465 100644 --- a/common/rfb/SMsgHandler.h +++ b/common/rfb/SMsgHandler.h @@ -47,6 +47,9 @@ namespace rfb { virtual void setEncodings(int nEncodings, rdr::U32* encodings); virtual void framebufferUpdateRequest(const Rect& r, bool incremental); + virtual void enableContinuousUpdates(const Rect& r); + virtual void disableContinuousUpdates(); + // InputHandler interface // The InputHandler methods will be called for the corresponding messages. |