diff options
author | Evan Nemerson <evan@coeus-group.com> | 2010-06-10 21:35:42 -0700 |
---|---|---|
committer | Evan Nemerson <evan@coeus-group.com> | 2010-06-12 21:39:39 -0700 |
commit | 4ad749b715f91d48ed71c6be0fc4b66b24ab497e (patch) | |
tree | 78155a52733a808755967c557f532500f405e27a /vapi/gudev-1.0.vapi | |
parent | dcbd995c4c5cdb75c83d64b340700fff716731c3 (diff) | |
download | vala-4ad749b715f91d48ed71c6be0fc4b66b24ab497e.tar.gz |
gudev-1.0: fix Device.get_property_keys and Client.query_by_subsystem
Diffstat (limited to 'vapi/gudev-1.0.vapi')
-rw-r--r-- | vapi/gudev-1.0.vapi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vapi/gudev-1.0.vapi b/vapi/gudev-1.0.vapi index 057ab5529..e176eae24 100644 --- a/vapi/gudev-1.0.vapi +++ b/vapi/gudev-1.0.vapi @@ -8,7 +8,7 @@ namespace GUdev { public Client ([CCode (array_length = false)] string[]? subsystems); public unowned GUdev.Device? query_by_device_file (string device_file); public unowned GUdev.Device? query_by_device_number (GUdev.DeviceType type, GUdev.DeviceNumber number); - public GLib.List query_by_subsystem (string? subsystem); + public GLib.List<GUdev.Device> query_by_subsystem (string? subsystem); public unowned GUdev.Device? query_by_subsystem_and_name (string subsystem, string name); public unowned GUdev.Device? query_by_sysfs_path (string sysfs_path); [NoWrapper] @@ -53,7 +53,7 @@ namespace GUdev { [CCode (array_length = false)] public unowned string?[] get_property_as_strv (string key); public uint64 get_property_as_uint64 (string key); - [CCode (array_length = false)] + [CCode (array_length = false, array_null_terminated = true)] public unowned string?[] get_property_keys (); public uint64 get_seqnum (); public unowned string get_subsystem (); |