diff options
author | Christian Beier <dontmind@freeshell.org> | 2018-06-26 21:01:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-26 21:01:44 +0200 |
commit | 161e7cab026dd89dacd85208b74834cc4c509f72 (patch) | |
tree | 866a64b37a34bb2dd547db597109fc6b486ee9bc /rfb | |
parent | a67e22dd1f139fd8025fae370ad33d861bb657ef (diff) | |
parent | dd873fce451e4b7d7cc69056a62e107aae7c8e7a (diff) | |
download | libtdevnc-161e7cab026dd89dacd85208b74834cc4c509f72.tar.gz libtdevnc-161e7cab026dd89dacd85208b74834cc4c509f72.zip |
Merge pull request #235 from eddiejames/master
Tight: export SendCompressedData and SendTightHeader functions
Diffstat (limited to 'rfb')
-rw-r--r-- | rfb/rfb.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -895,6 +895,8 @@ extern rfbBool rfbTightDisableGradient; extern int rfbNumCodedRectsTight(rfbClientPtr cl, int x,int y,int w,int h); extern rfbBool rfbSendRectEncodingTight(rfbClientPtr cl, int x,int y,int w,int h); +extern rfbBool rfbSendTightHeader(rfbClientPtr cl, int x, int y, int w, int h); +extern rfbBool rfbSendCompressedDataTight(rfbClientPtr cl, char *buf, int compressedLen); #if defined(LIBVNCSERVER_HAVE_LIBPNG) extern rfbBool rfbSendRectEncodingTightPng(rfbClientPtr cl, int x,int y,int w,int h); |