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 /xrdp/xrdp_process.c | |
| parent | 8be83473b72c926d3c056fd8a81965dbce0a0e5e (diff) | |
| download | xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.tar.gz xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.zip | |
Eliminate APP_CC and DEFAULT_CC
Diffstat (limited to 'xrdp/xrdp_process.c')
| -rw-r--r-- | xrdp/xrdp_process.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/xrdp/xrdp_process.c b/xrdp/xrdp_process.c index 4c0b44c3..2b6c9a62 100644 --- a/xrdp/xrdp_process.c +++ b/xrdp/xrdp_process.c @@ -28,7 +28,7 @@ static int g_session_id = 0; /*****************************************************************************/ /* always called from xrdp_listen thread */ -struct xrdp_process *APP_CC +struct xrdp_process * xrdp_process_create(struct xrdp_listen *owner, tbus done_event) { struct xrdp_process *self; @@ -48,7 +48,7 @@ xrdp_process_create(struct xrdp_listen *owner, tbus done_event) } /*****************************************************************************/ -void APP_CC +void xrdp_process_delete(struct xrdp_process *self) { if (self == 0) @@ -64,7 +64,7 @@ xrdp_process_delete(struct xrdp_process *self) } /*****************************************************************************/ -static int APP_CC +static int xrdp_process_loop(struct xrdp_process *self, struct stream *s) { int rv; @@ -91,14 +91,14 @@ xrdp_process_loop(struct xrdp_process *self, struct stream *s) /*****************************************************************************/ /* returns boolean */ /* this is so libxrdp.so can known when to quit looping */ -static int DEFAULT_CC +static int xrdp_is_term(void) { return g_is_term(); } /*****************************************************************************/ -static int APP_CC +static int xrdp_process_mod_end(struct xrdp_process *self) { if (self->wm != 0) @@ -119,7 +119,7 @@ xrdp_process_mod_end(struct xrdp_process *self) } /*****************************************************************************/ -static int DEFAULT_CC +static int xrdp_process_data_in(struct trans *self) { struct xrdp_process *pro; @@ -216,7 +216,7 @@ xrdp_process_data_in(struct trans *self) } /*****************************************************************************/ -int APP_CC +int xrdp_process_main_loop(struct xrdp_process *self) { int robjs_count; |
