1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/* hal.vala
*
* Copyright (C) 2007-2009 Jürg Billeter
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author:
* Jürg Billeter <j@bitron.ch>
*/
[CCode (cheader_filename = "libhal.h", cprefix = "LibHal")]
namespace Hal {
[CCode (has_target = false)]
public delegate void DeviceAdded (Context ctx, string udi);
[CCode (has_target = false)]
public delegate void DeviceRemoved (Context ctx, string udi);
[CCode (free_function = "libhal_ctx_free", cprefix = "libhal_ctx_")]
[Compact]
public class Context {
public Context ();
public bool init (ref DBus.RawError error);
public bool set_dbus_connection (DBus.RawConnection conn);
public bool set_user_data (void* user_data);
public void* get_user_data ();
public bool set_device_added (DeviceAdded _callback);
public bool set_device_removed (DeviceRemoved _callback);
[CCode (cname = "libhal_find_device_by_capability", array_length_pos = 1.9)]
public string[] find_device_by_capability (string capability, ref DBus.RawError error);
[CCode (cname = "libhal_device_get_property_string")]
public string device_get_property_string (string udi, string key, ref DBus.RawError error);
[CCode (cname = "libhal_device_get_property_int")]
public int device_get_property_int (string udi, string key, ref DBus.RawError error);
[CCode (cname = "libhal_device_get_property_uint64")]
public uint64 device_get_property_uint64 (string udi, string key, ref DBus.RawError error);
[CCode (cname = "libhal_device_get_property_double")]
public double device_get_property_double (string udi, string key, ref DBus.RawError error);
[CCode (cname = "libhal_device_get_property_bool")]
public bool device_get_property_bool (string udi, string key, ref DBus.RawError error);
[CCode (cname = "libhal_device_query_capability")]
public bool device_query_capability (string udi, string capability, ref DBus.RawError error);
}
}
|