diff options
| author | Pavel Roskin <plroskin@gmail.com> | 2017-03-12 09:35:00 -0700 |
|---|---|---|
| committer | jsorg71 <jay.sorg@gmail.com> | 2017-03-14 00:21:48 -0700 |
| commit | 6ed4c969f4d646a7751fe2da29ba94eddd3d6477 (patch) | |
| tree | 951c72b16a0be1a1cc8c77e6d2ecaa1f25f2bcd6 /libxrdp/xrdp_surface.c | |
| parent | 8be83473b72c926d3c056fd8a81965dbce0a0e5e (diff) | |
| download | xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.tar.gz xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.zip | |
Eliminate APP_CC and DEFAULT_CC
Diffstat (limited to 'libxrdp/xrdp_surface.c')
| -rw-r--r-- | libxrdp/xrdp_surface.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libxrdp/xrdp_surface.c b/libxrdp/xrdp_surface.c index 85978c0a..73c7465a 100644 --- a/libxrdp/xrdp_surface.c +++ b/libxrdp/xrdp_surface.c @@ -25,7 +25,7 @@ #include "freerdp/codec/rfx.h" /*****************************************************************************/ -struct xrdp_surface *APP_CC +struct xrdp_surface * xrdp_surface_create(struct xrdp_session *session, struct xrdp_fastpath *fastpath) { struct xrdp_surface *self; @@ -39,7 +39,7 @@ xrdp_surface_create(struct xrdp_session *session, struct xrdp_fastpath *fastpath } /*****************************************************************************/ -void APP_CC +void xrdp_surface_delete(struct xrdp_surface *self) { STREAM *s; @@ -60,14 +60,14 @@ xrdp_surface_delete(struct xrdp_surface *self) /*****************************************************************************/ /* returns error */ -int APP_CC +int xrdp_surface_reset(struct xrdp_surface *self) { return 0; } /*****************************************************************************/ -int APP_CC +int xrdp_surface_init(struct xrdp_surface *self) { int width; @@ -89,7 +89,7 @@ xrdp_surface_init(struct xrdp_surface *self) } /*****************************************************************************/ -int APP_CC +int xrdp_surface_send_surface_bits(struct xrdp_surface *self, int bpp, char *data, int x, int y, int cx, int cy) { @@ -153,7 +153,7 @@ xrdp_surface_send_surface_bits(struct xrdp_surface *self, int bpp, char *data, } /*****************************************************************************/ -int APP_CC +int xrdp_surface_send_frame_marker(struct xrdp_surface *self, uint16 frameAction, uint32 frameId) { |
