summaryrefslogtreecommitdiffstats
path: root/libxrdp/xrdp_bitmap32_compress.c
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2017-03-12 09:35:00 -0700
committerjsorg71 <jay.sorg@gmail.com>2017-03-14 00:21:48 -0700
commit6ed4c969f4d646a7751fe2da29ba94eddd3d6477 (patch)
tree951c72b16a0be1a1cc8c77e6d2ecaa1f25f2bcd6 /libxrdp/xrdp_bitmap32_compress.c
parent8be83473b72c926d3c056fd8a81965dbce0a0e5e (diff)
downloadxrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.tar.gz
xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.zip
Eliminate APP_CC and DEFAULT_CC
Diffstat (limited to 'libxrdp/xrdp_bitmap32_compress.c')
-rw-r--r--libxrdp/xrdp_bitmap32_compress.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libxrdp/xrdp_bitmap32_compress.c b/libxrdp/xrdp_bitmap32_compress.c
index 4f6cf253..332c2a2b 100644
--- a/libxrdp/xrdp_bitmap32_compress.c
+++ b/libxrdp/xrdp_bitmap32_compress.c
@@ -41,7 +41,7 @@ http://msdn.microsoft.com/en-us/library/cc241877.aspx
/*****************************************************************************/
/* split RGB */
-static int APP_CC
+static int
fsplit3(char *in_data, int start_line, int width, int e,
char *r_data, char *g_data, char *b_data)
{
@@ -121,7 +121,7 @@ fsplit3(char *in_data, int start_line, int width, int e,
/*****************************************************************************/
/* split ARGB */
-static int APP_CC
+static int
fsplit4(char *in_data, int start_line, int width, int e,
char *a_data, char *r_data, char *g_data, char *b_data)
{
@@ -218,7 +218,7 @@ do { \
} while (0)
/*****************************************************************************/
-static int APP_CC
+static int
fdelta(char *in_plane, char *out_plane, int cx, int cy)
{
char delta;
@@ -250,7 +250,7 @@ fdelta(char *in_plane, char *out_plane, int cx, int cy)
}
/*****************************************************************************/
-static int APP_CC
+static int
fout(int collen, int replen, char *colptr, struct stream *s)
{
int code;
@@ -315,7 +315,7 @@ fout(int collen, int replen, char *colptr, struct stream *s)
}
/*****************************************************************************/
-static int APP_CC
+static int
fpack(char *plane, int cx, int cy, struct stream *s)
{
char *ptr8;
@@ -382,7 +382,7 @@ fpack(char *plane, int cx, int cy, struct stream *s)
}
/*****************************************************************************/
-static int APP_CC
+static int
foutraw3(struct stream *s, int bytes, int header,
char *r_data, char *g_data, char *b_data)
{
@@ -396,7 +396,7 @@ foutraw3(struct stream *s, int bytes, int header,
}
/*****************************************************************************/
-static int APP_CC
+static int
foutraw4(struct stream *s, int bytes, int header,
char *a_data, char *r_data, char *g_data, char *b_data)
{
@@ -412,7 +412,7 @@ foutraw4(struct stream *s, int bytes, int header,
/*****************************************************************************/
/* returns the number of lines compressed */
-int APP_CC
+int
xrdp_bitmap32_compress(char *in_data, int width, int height,
struct stream *s, int bpp, int byte_limit,
int start_line, struct stream *temp_s,