From 4bec90c9ecbc83cc4f3f9ce9cf02510aafb52a35 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Thu, 16 Jan 2025 08:16:35 +0100 Subject: Drop FreeRDP version semantics for the project, prepare for FreeRDPv3. --- freerdp-session-wrapper.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 freerdp-session-wrapper.c (limited to 'freerdp-session-wrapper.c') 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 + * + * 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 . + * + * Author: Ted Gould + */ + +#include +#include + +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; +} -- cgit v1.2.3