-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(docs): update README and dbus XML
- Loading branch information
1 parent
3fad3b2
commit 06e5e98
Showing
19 changed files
with
970 additions
and
252 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
|
||
<!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.DBus.Peer"> | ||
<method name="Ping"> | ||
</method> | ||
<method name="GetMachineId"> | ||
<arg type="s" direction="out"/> | ||
</method> | ||
</interface> | ||
<interface name="org.freedesktop.DBus.Properties"> | ||
<method name="Get"> | ||
<arg name="interface_name" type="s" direction="in"/> | ||
<arg name="property_name" type="s" direction="in"/> | ||
<arg type="v" direction="out"/> | ||
</method> | ||
<method name="Set"> | ||
<arg name="interface_name" type="s" direction="in"/> | ||
<arg name="property_name" type="s" direction="in"/> | ||
<arg name="value" type="v" direction="in"/> | ||
</method> | ||
<method name="GetAll"> | ||
<arg name="interface_name" type="s" direction="in"/> | ||
<arg type="a{sv}" direction="out"/> | ||
</method> | ||
<!-- | ||
Emits the `org.freedesktop.DBus.Properties.PropertiesChanged` signal. | ||
--> | ||
<signal name="PropertiesChanged"> | ||
<arg name="interface_name" type="s"/> | ||
<arg name="changed_properties" type="a{sv}"/> | ||
<arg name="invalidated_properties" type="as"/> | ||
</signal> | ||
</interface> | ||
<interface name="org.freedesktop.DBus.Introspectable"> | ||
<method name="Introspect"> | ||
<arg type="s" direction="out"/> | ||
</method> | ||
</interface> | ||
<interface name="org.shadowblip.Input.Gamepad"> | ||
<!-- | ||
Name of the DBus device | ||
--> | ||
<property name="Name" type="s" access="read"/> | ||
</interface> | ||
</node> | ||
|
Oops, something went wrong.