diff options
| author | dscho <dscho> | 2003-07-30 09:42:36 +0000 |
|---|---|---|
| committer | dscho <dscho> | 2003-07-30 09:42:36 +0000 |
| commit | eeb2061dfb03ea11ba028b33037fa0805d22e6a4 (patch) | |
| tree | dce009b7b0b68b8660aa01ae543883a0e36bf287 /libvncclient/tight.c | |
| parent | 964aa1628f2cc4fac17c22dc89fc2439bd87b00e (diff) | |
| download | libtdevnc-eeb2061dfb03ea11ba028b33037fa0805d22e6a4.tar.gz libtdevnc-eeb2061dfb03ea11ba028b33037fa0805d22e6a4.zip | |
API change: Bool, KeySym, Pixel get prefix "rfb"; constants in rfbconfig.h get prefix "LIBVNCSERVER_"
Diffstat (limited to 'libvncclient/tight.c')
| -rw-r--r-- | libvncclient/tight.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libvncclient/tight.c b/libvncclient/tight.c index 1fadd4c..77919f4 100644 --- a/libvncclient/tight.c +++ b/libvncclient/tight.c @@ -80,12 +80,12 @@ static void FilterPaletteBPP (rfbClient* client, int numRows, CARDBPP *destBuffe static void FilterGradientBPP (rfbClient* client, int numRows, CARDBPP *destBuffer); #if BPP != 8 -static Bool DecompressJpegRectBPP(rfbClient* client, int x, int y, int w, int h); +static rfbBool DecompressJpegRectBPP(rfbClient* client, int x, int y, int w, int h); #endif /* Definitions */ -static Bool +static rfbBool HandleTightBPP (rfbClient* client, int rx, int ry, int rw, int rh) { CARDBPP fill_colour; @@ -297,7 +297,7 @@ HandleTightBPP (rfbClient* client, int rx, int ry, int rw, int rh) /* The following variables are defined in rfbproto.c: - static Bool cutZeros; + static rfbBool cutZeros; static int rectWidth, rectColors; static uint8_t tightPalette[256*4]; static uint8_t tightPrevRow[2048*3*sizeof(CARD16)]; @@ -526,13 +526,13 @@ FilterPaletteBPP (rfbClient* client, int numRows, CARDBPP *dst) /* The following variables are defined in rfbproto.c: - static Bool jpegError; + static rfbBool jpegError; static struct jpeg_source_mgr jpegSrcManager; static JOCTET *jpegBufferPtr; static size_t *jpegBufferLen; */ -static Bool +static rfbBool DecompressJpegRectBPP(rfbClient* client, int x, int y, int w, int h) { struct jpeg_decompress_struct cinfo; |
