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
|
<!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="com.lomiri.Repowerd">
<method name="requestSysState">
<arg type="s" name="name" direction="in">
</arg>
<arg type="i" name="state" direction="in">
</arg>
<arg type="s" name="cookie" direction="out">
</arg>
</method>
<method name="clearSysState">
<arg type="s" name="cookie" direction="in">
</arg>
</method>
<method name="requestWakeup">
<arg type="s" name="name" direction="in">
</arg>
<arg type="t" name="time" direction="in">
</arg>
<arg type="s" name="cookie" direction="out">
</arg>
</method>
<method name="clearWakeup">
<arg type="s" name="cookie" direction="in">
</arg>
</method>
<!-- FIXME: qdbusxml2cpp: Got unknown type `(iiiib)' processing ...
<method name="getBrightnessParams">
<arg type="(iiiib)" name="params" direction="out">
</arg>
</method>
-->
<signal name="Wakeup">
</signal>
</interface>
</node>
|