summaryrefslogtreecommitdiffstats
path: root/xorg/server/module/rdpMain.c
diff options
context:
space:
mode:
authorjsorg71 <jay.sorg@gmail.com>2013-08-16 12:13:52 -0700
committerjsorg71 <jay.sorg@gmail.com>2013-08-16 12:13:52 -0700
commitb8388a65a2d561c23cc08613d1c4d7cf5dbb96d0 (patch)
tree6d606a46f9d52dd7945b88566818704e226e013a /xorg/server/module/rdpMain.c
parent759d508635a742690aebcf07d4d9dfa2c08beda9 (diff)
parentfa40106a697611a35b57459c9403cc440a0cc865 (diff)
downloadxrdp-proprietary-b8388a65a2d561c23cc08613d1c4d7cf5dbb96d0.tar.gz
xrdp-proprietary-b8388a65a2d561c23cc08613d1c4d7cf5dbb96d0.zip
Merge pull request #90 from neutrinolabs/master
xorg driver, smart card, etc
Diffstat (limited to 'xorg/server/module/rdpMain.c')
-rw-r--r--xorg/server/module/rdpMain.c39
1 files changed, 35 insertions, 4 deletions
diff --git a/xorg/server/module/rdpMain.c b/xorg/server/module/rdpMain.c
index 9930764c..f19b06cd 100644
--- a/xorg/server/module/rdpMain.c
+++ b/xorg/server/module/rdpMain.c
@@ -38,6 +38,9 @@ rdp module main
#include <mi.h>
#include "rdp.h"
+#include "rdpInput.h"
+#include "rdpDraw.h"
+#include "rdpClientCon.h"
/******************************************************************************/
#define LOG_LEVEL 1
@@ -52,20 +55,43 @@ rdp module main
#define PACKAGE_VERSION_MINOR 0
#define PACKAGE_VERSION_PATCHLEVEL 0
-static int g_initialised = 0;
+static Bool g_initialised = FALSE;
/*****************************************************************************/
static pointer
-xorgxrdpSetup(pointer Module, pointer Options, int *ErrorMajor, int *ErrorMinor)
+xorgxrdpSetup(pointer Module, pointer Options,
+ int *ErrorMajor, int *ErrorMinor)
{
LLOGLN(0, ("xorgxrdpSetup:"));
if (!g_initialised)
{
- g_initialised = 1;
+ g_initialised = TRUE;
}
+ rdpInputInit();
+ rdpPrivateInit();
return (pointer) 1;
}
+/*****************************************************************************/
+static void
+xorgxrdpTearDown(pointer Module)
+{
+ LLOGLN(0, ("xorgxrdpTearDown:"));
+}
+
+/*****************************************************************************/
+void
+xorgxrdpDownDown(ScreenPtr pScreen)
+{
+ LLOGLN(0, ("xorgxrdpDownDown:"));
+ if (g_initialised)
+ {
+ g_initialised = FALSE;
+ LLOGLN(0, ("xorgxrdpDownDown: 1"));
+ rdpClientConDeinit(rdpGetDevFromScreen(pScreen));
+ }
+}
+
static MODULESETUPPROTO(xorgxrdpSetup);
static XF86ModuleVersionInfo RDPVersRec =
{
@@ -83,4 +109,9 @@ static XF86ModuleVersionInfo RDPVersRec =
{ 0, 0, 0, 0 }
};
-XF86ModuleData xorgxrdpModuleData = { &RDPVersRec, xorgxrdpSetup, NULL };
+_X_EXPORT XF86ModuleData xorgxrdpModuleData =
+{
+ &RDPVersRec,
+ xorgxrdpSetup,
+ xorgxrdpTearDown
+};