aboutsummaryrefslogtreecommitdiff
path: root/freerdp-session-wrapper.c
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2025-01-16 08:16:35 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2025-01-16 08:16:35 +0100
commit4bec90c9ecbc83cc4f3f9ce9cf02510aafb52a35 (patch)
tree56208a2c489a6d90320a18ec0fbb0bcc0aab6be7 /freerdp-session-wrapper.c
parentcb6e9285f6612d68fde84d8236bcf101eea6248d (diff)
downloadlightdm-remote-session-freerdp2-4bec90c9ecbc83cc4f3f9ce9cf02510aafb52a35.tar.gz
lightdm-remote-session-freerdp2-4bec90c9ecbc83cc4f3f9ce9cf02510aafb52a35.tar.bz2
lightdm-remote-session-freerdp2-4bec90c9ecbc83cc4f3f9ce9cf02510aafb52a35.zip
Drop FreeRDP version semantics for the project, prepare for FreeRDPv3.HEADmaster
Diffstat (limited to 'freerdp-session-wrapper.c')
-rw-r--r--freerdp-session-wrapper.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/freerdp-session-wrapper.c b/freerdp-session-wrapper.c
new file mode 100644
index 0000000..ccb3026
--- /dev/null
+++ b/freerdp-session-wrapper.c
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2012 Canonical Ltd.
+ * Copyirhgt (C) 2018-2024 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 3, as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranties of
+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Author: Ted Gould <ted@canonical.com>
+ */
+
+#include <stdlib.h>
+#include <unistd.h>
+
+int
+main (int __attribute__((unused)) argc, char __attribute__((unused)) *argv[])
+{
+ char * args[2];
+ args[0] = PKGDATADIR "/freerdp-session";
+ args[1] = NULL;
+
+ execvp(args[0], args);
+
+ return 0;
+}