From fdc39509763f7d60429b903474916684da6653eb Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Sun, 2 Nov 2014 20:44:45 +0100 Subject: Imported Upstream version 1.0.0 --- src/rdp-server.h | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 src/rdp-server.h (limited to 'src/rdp-server.h') diff --git a/src/rdp-server.h b/src/rdp-server.h new file mode 100644 index 0000000..297c8ef --- /dev/null +++ b/src/rdp-server.h @@ -0,0 +1,57 @@ +/* + * Copyright © 2012 Canonical Ltd. + * + * 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 + */ + +#ifndef __RDP_SERVER_H__ +#define __RDP_SERVER_H__ + +#include +#include +#include "server.h" + +G_BEGIN_DECLS + +#define RDP_SERVER_TYPE (rdp_server_get_type ()) +#define RDP_SERVER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), RDP_SERVER_TYPE, RdpServer)) +#define RDP_SERVER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), RDP_SERVER_TYPE, RdpServerClass)) +#define IS_RDP_SERVER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), RDP_SERVER_TYPE)) +#define IS_RDP_SERVER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), RDP_SERVER_TYPE)) +#define RDP_SERVER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), RDP_SERVER_TYPE, RdpServerClass)) + +typedef struct _RdpServer RdpServer; +typedef struct _RdpServerClass RdpServerClass; + +struct _RdpServerClass { + ServerClass parent_class; +}; + +struct _RdpServer { + Server parent; + + gchar * username; + gchar * password; + gchar * domain; + gboolean domain_required; +}; + +GType rdp_server_get_type (void); +Server * rdp_server_new_from_keyfile (GKeyFile * keyfile, const gchar * name); +Server * rdp_server_new_from_json (JsonObject * object); + +G_END_DECLS + +#endif -- cgit v1.2.3