summaryrefslogtreecommitdiff
path: root/vala
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2016-09-30 13:42:49 +0200
committerJens Georg <mail@jensge.org>2016-10-15 21:08:10 +0200
commit228cebc15651f9e6720dcb5271d2a5feaf8efd6e (patch)
tree44615b04f130847a0ccfc9a45c34ddf56bfc49a3 /vala
parent638c77aa22ed9d59ff91f64f51d0eb57f225e558 (diff)
downloadgupnp-228cebc15651f9e6720dcb5271d2a5feaf8efd6e.tar.gz
Remove _gi function variants
Signed-off-by: Jens Georg <mail@jensge.org>
Diffstat (limited to 'vala')
-rw-r--r--vala/GUPnP-1.2.metadata4
-rw-r--r--vala/gupnp-1.2-custom.vala7
2 files changed, 3 insertions, 8 deletions
diff --git a/vala/GUPnP-1.2.metadata b/vala/GUPnP-1.2.metadata
index a62caea..4d376b4 100644
--- a/vala/GUPnP-1.2.metadata
+++ b/vala/GUPnP-1.2.metadata
@@ -30,12 +30,8 @@ ServiceProxy
.add_notify skip=false
.begin_action skip=false
.end_action_hash skip
- .end_action_hash_gi skip
.end_action_list skip
- .end_action_list_gi skip
- .send_action_hash skip
.send_action_list skip
- .send_action_list_gi skip
WhiteList
.entries skip
ControlError skip
diff --git a/vala/gupnp-1.2-custom.vala b/vala/gupnp-1.2-custom.vala
index f8474fd..ab584c2 100644
--- a/vala/gupnp-1.2-custom.vala
+++ b/vala/gupnp-1.2-custom.vala
@@ -23,11 +23,10 @@
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, [CCode (pos=-0.9)] GLib.HashTable<string, weak GLib.Value*> hash) throws GLib.Error;
- public bool end_action_list (GUPnP.ServiceProxyAction action, [CCode (pos=-0.9)] GLib.List<string> out_names, [CCode (pos=-0.8)] GLib.List<GLib.Type?> out_types, [CCode (pos=-0.7)] out GLib.List<weak GLib.Value*> out_values) 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_hash (string action, [CCode (pos=-0.9)] GLib.HashTable<string, GLib.Value?> in_hash, [CCode (pos=-0.8)] GLib.HashTable<string, weak GLib.Value*> out_hash) throws GLib.Error;
- public bool send_action_list (string action, [CCode (pos=-0.9)] GLib.List<string> in_names, [CCode (pos=-0.8)] GLib.List<weak GLib.Value?> in_values, [CCode (pos=-0.7)] GLib.List<string> out_names, [CCode (pos=-0.6)] GLib.List<GLib.Type?> out_types, [CCode (pos=-0.5)] 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;
}
public interface GUPnP.Acl : GLib.Object {