summaryrefslogtreecommitdiffstats
path: root/xrdp/xrdp_listen.c
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2005-06-28 03:00:43 +0000
committerjsorg71 <jsorg71>2005-06-28 03:00:43 +0000
commitfd4beef2df71d8c44e8de47a476f319d1d49a038 (patch)
tree44ac5af738425ec8c7560d50b7418eb113845418 /xrdp/xrdp_listen.c
parent74a67d2d3f9fd1e4e120373e49e6b02858d92bb9 (diff)
downloadxrdp-proprietary-fd4beef2df71d8c44e8de47a476f319d1d49a038.tar.gz
xrdp-proprietary-fd4beef2df71d8c44e8de47a476f319d1d49a038.zip
moved files around
Diffstat (limited to 'xrdp/xrdp_listen.c')
-rw-r--r--xrdp/xrdp_listen.c21
1 files changed, 14 insertions, 7 deletions
diff --git a/xrdp/xrdp_listen.c b/xrdp/xrdp_listen.c
index fb11be73..e71b8180 100644
--- a/xrdp/xrdp_listen.c
+++ b/xrdp/xrdp_listen.c
@@ -25,7 +25,8 @@
static struct xrdp_process* g_process = 0;
/*****************************************************************************/
-struct xrdp_listen* xrdp_listen_create(void)
+struct xrdp_listen* APP_CC
+xrdp_listen_create(void)
{
struct xrdp_listen* self;
@@ -35,13 +36,15 @@ struct xrdp_listen* xrdp_listen_create(void)
}
/*****************************************************************************/
-void xrdp_listen_delete(struct xrdp_listen* self)
+void APP_CC
+xrdp_listen_delete(struct xrdp_listen* self)
{
g_free(self);
}
/*****************************************************************************/
-int xrdp_listen_term_processes(struct xrdp_listen* self)
+int APP_CC
+xrdp_listen_term_processes(struct xrdp_listen* self)
{
int i;
@@ -77,7 +80,8 @@ int xrdp_listen_term_processes(struct xrdp_listen* self)
/*****************************************************************************/
/* returns error */
-int xrdp_listen_add_pro(struct xrdp_listen* self)
+int APP_CC
+xrdp_listen_add_pro(struct xrdp_listen* self)
{
int i;
@@ -103,7 +107,8 @@ int xrdp_listen_add_pro(struct xrdp_listen* self)
}
/*****************************************************************************/
-int xrdp_listen_delete_pro(struct xrdp_listen* self, struct xrdp_process* pro)
+int APP_CC
+xrdp_listen_delete_pro(struct xrdp_listen* self, struct xrdp_process* pro)
{
int i;
@@ -122,7 +127,8 @@ int xrdp_listen_delete_pro(struct xrdp_listen* self, struct xrdp_process* pro)
/*****************************************************************************/
/* i can't get stupid in_val to work, hum using global var for now */
-THREAD_RV THREAD_CC xrdp_process_run(void* in_val)
+THREAD_RV THREAD_CC
+xrdp_process_run(void* in_val)
{
DEBUG(("process started\n\r"));
xrdp_process_main_loop(g_process);
@@ -132,7 +138,8 @@ THREAD_RV THREAD_CC xrdp_process_run(void* in_val)
/*****************************************************************************/
/* wait for incoming connections */
-int xrdp_listen_main_loop(struct xrdp_listen* self)
+int APP_CC
+xrdp_listen_main_loop(struct xrdp_listen* self)
{
int error;