diff options
Diffstat (limited to 'libxrdp/xrdp_bitmap32_compress.c')
| -rw-r--r-- | libxrdp/xrdp_bitmap32_compress.c | 16 | 
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, | 
