Changeset e9075349c19786b1734a451ec607f7450672efb5
- Timestamp:
- 13/08/07 17:21:43
(1 year ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1187018503 +0000
- git-parent:
[4a0090f442f99e1c76cd69ac1a30d0740535e8a3]
- git-author:
- Rafaël Carré <funman@videolan.org> 1187018503 +0000
- Message:
Returns object hierarchy with root object introspection data. Thanks to eean.
Uses correct interface name.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6e8a32c |
re907534 |
|
| 616 | 616 | |
|---|
| 617 | 617 | DBUS_METHOD( handle_introspect_root ) |
|---|
| 618 | | { /* handles introspection of /org/videolan/vlc */ |
|---|
| | 618 | { /* handles introspection of root object */ |
|---|
| 619 | 619 | REPLY_INIT; |
|---|
| 620 | 620 | OUT_ARGUMENTS; |
|---|
| r6e8a32c |
re907534 |
|
| 89 | 89 | "<!DOCTYPE node PUBLIC \"-//freedesktop//DTD D-BUS Object Introspection 1.0//EN\"\n" |
|---|
| 90 | 90 | "\"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd\">\n" |
|---|
| 91 | | "<node>" |
|---|
| | 91 | "<node>\n" |
|---|
| | 92 | " <node name=\"Player\"/>\n" |
|---|
| | 93 | " <node name=\"TrackList\"/>\n" |
|---|
| 92 | 94 | " <interface name=\"org.freedesktop.DBus.Introspectable\">\n" |
|---|
| 93 | 95 | " <method name=\"Introspect\">\n" |
|---|
| … | … | |
| 112 | 114 | " </method>\n" |
|---|
| 113 | 115 | " </interface>\n" |
|---|
| 114 | | " <interface name=\"org.videolan.vlc\">\n" |
|---|
| | 116 | " <interface name=\"org.freedesktop.MediaPlayer\">\n" |
|---|
| 115 | 117 | " <method name=\"GetStatus\">\n" |
|---|
| 116 | 118 | " <arg type=\"i\" direction=\"out\" />\n" |
|---|
| … | … | |
| 161 | 163 | " </method>\n" |
|---|
| 162 | 164 | " </interface>\n" |
|---|
| 163 | | " <interface name=\"org.videolan.vlc\">\n" |
|---|
| | 165 | " <interface name=\"org.freedesktop.MediaPlayer\">\n" |
|---|
| 164 | 166 | " <method name=\"AddTrack\">\n" |
|---|
| 165 | 167 | " <arg type=\"s\" direction=\"in\" />\n" |
|---|