summaryrefslogtreecommitdiffstats
path: root/mc
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 /mc
parent8be83473b72c926d3c056fd8a81965dbce0a0e5e (diff)
downloadxrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.tar.gz
xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.zip
Eliminate APP_CC and DEFAULT_CC
Diffstat (limited to 'mc')
-rw-r--r--mc/mc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mc/mc.c b/mc/mc.c
index 04c83d46..2e9f76bf 100644
--- a/mc/mc.c
+++ b/mc/mc.c
@@ -26,7 +26,7 @@
/*****************************************************************************/
/* return error */
-int DEFAULT_CC
+int
lib_mod_start(struct mod *mod, int w, int h, int bpp)
{
LIB_DEBUG(mod, "in lib_mod_start");
@@ -39,7 +39,7 @@ lib_mod_start(struct mod *mod, int w, int h, int bpp)
/******************************************************************************/
/* return error */
-int DEFAULT_CC
+int
lib_mod_connect(struct mod *mod)
{
LIB_DEBUG(mod, "in lib_mod_connect");
@@ -49,7 +49,7 @@ lib_mod_connect(struct mod *mod)
/******************************************************************************/
/* return error */
-int DEFAULT_CC
+int
lib_mod_event(struct mod *mod, int msg, long param1, long param2,
long param3, long param4)
{
@@ -60,7 +60,7 @@ lib_mod_event(struct mod *mod, int msg, long param1, long param2,
/******************************************************************************/
/* return error */
-int DEFAULT_CC
+int
lib_mod_signal(struct mod *mod)
{
LIB_DEBUG(mod, "in lib_mod_signal");
@@ -70,7 +70,7 @@ lib_mod_signal(struct mod *mod)
/******************************************************************************/
/* return error */
-int DEFAULT_CC
+int
lib_mod_end(struct mod *mod)
{
return 0;
@@ -78,7 +78,7 @@ lib_mod_end(struct mod *mod)
/******************************************************************************/
/* return error */
-int DEFAULT_CC
+int
lib_mod_set_param(struct mod *mod, const char *name, const char *value)
{
return 0;