blob: b66fcaa7e87db3fd80c6e828d5e4e84dec753bf2 (
plain)
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
|
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="org.freedesktop.ConsoleKit.Seat">
<method name="GetId">
<arg name="sid" direction="out" type="o"/>
</method>
<method name="GetSessions">
<arg name="sessions" direction="out" type="ao"/>
</method>
<method name="GetDevices">
<arg name="devices" direction="out" type="a(ss)"/>
</method>
<method name="GetActiveSession">
<arg name="ssid" direction="out" type="o"/>
</method>
<method name="CanActivateSessions">
<arg name="can_activate" direction="out" type="b"/>
</method>
<method name="ActivateSession">
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
<arg name="ssid" direction="in" type="o"/>
</method>
<signal name="ActiveSessionChanged">
<arg name="ssid" type="o"/>
</signal>
<signal name="SessionAdded">
<arg name="ssid" type="o"/>
</signal>
<signal name="SessionRemoved">
<arg name="ssid" type="o"/>
</signal>
<signal name="DeviceAdded">
<arg name="device" type="(ss)"/>
</signal>
<signal name="DeviceRemoved">
<arg name="device" type="(ss)"/>
</signal>
</interface>
</node>
|