summaryrefslogtreecommitdiff
path: root/vala
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2022-01-16 13:52:21 +0100
committerJens Georg <mail@jensge.org>2022-01-20 14:36:07 +0100
commit020e2dceaecdfdc665ea70d45ac954c989e317e9 (patch)
tree930a8b4fa9a8ae5fe6fb563bfd48f50657cb1e15 /vala
parent8f190d8d61fb871cfb9a92b938c72357d54e4dbe (diff)
downloadgupnp-020e2dceaecdfdc665ea70d45ac954c989e317e9.tar.gz
ServiceProxy: Remove deprecated API
Diffstat (limited to 'vala')
-rw-r--r--vala/GUPnP-1.6.metadata4
-rw-r--r--vala/gupnp-custom.vala9
2 files changed, 0 insertions, 13 deletions
diff --git a/vala/GUPnP-1.6.metadata b/vala/GUPnP-1.6.metadata
index be67723..0e6a6ea 100644
--- a/vala/GUPnP-1.6.metadata
+++ b/vala/GUPnP-1.6.metadata
@@ -19,9 +19,5 @@ ServiceIntrospection
.scpd skip
ServiceProxy
.add_notify skip=false
- .begin_action skip=false
- .end_action_hash skip
- .end_action_list skip
- .send_action_list skip
XMLDoc
.new skip
diff --git a/vala/gupnp-custom.vala b/vala/gupnp-custom.vala
index 3ad9fd0..f412e99 100644
--- a/vala/gupnp-custom.vala
+++ b/vala/gupnp-custom.vala
@@ -8,15 +8,6 @@
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
-public class GUPnP.ServiceProxy : GUPnP.ServiceInfo {
- public bool send_action (string action, ...) throws GLib.Error;
- public bool end_action (GUPnP.ServiceProxyAction action, ...) throws GLib.Error;
- public bool end_action_hash (GUPnP.ServiceProxyAction action, GLib.HashTable<string, weak GLib.Value*> hash) throws GLib.Error;
- public bool end_action_list (GUPnP.ServiceProxyAction action, GLib.List<string> out_names, GLib.List<GLib.Type?> out_types, out GLib.List<weak GLib.Value*> out_values) throws GLib.Error;
-
- public bool send_action_list (string action, GLib.List<string> in_names, GLib.List<weak GLib.Value?> in_values, GLib.List<string> out_names, GLib.List<GLib.Type?> out_types, out GLib.List<weak GLib.Value*> out_values) throws GLib.Error;
-}
-
[Compact]
public class GUPnP.ServiceProxyAction {
[CCode (has_construct_function = false)]