blob: 3efd0021d26b2d27679cbfd764f585b6abae4c66 (
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
|
<!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.mpris.MediaPlayer2.Player">
<property name="CanPlay" type="b" access="read"/>
<method name="setCanPlay">
<arg direction="in" type="b" name="canPlay" />
</method>
<property name="CanPause" type="b" access="read"/>
<method name="setCanPause">
<arg direction="in" type="b" name="canPause" />
</method>
<property name="CanGoNext" type="b" access="read"/>
<method name="setCanGoNext">
<arg direction="in" type="b" name="canGoNext" />
</method>
<property name="CanGoPrevious" type="b" access="read"/>
<method name="setCanGoPrevious">
<arg direction="in" type="b" name="canGoPrevious" />
</method>
</interface>
</node>
|