blob: 2a2b59020864c8b0828ee50bd8a855941e3b77d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
const char * _indicator_service =
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"<node name=\"/\">\n"
" <interface name=\"org.ayatana.indicator.service\">\n"
"<!-- Properties -->\n"
" <!-- None currently -->\n"
"\n"
"<!-- Methods -->\n"
" <method name=\"Watch\">\n"
" <annotation name=\"org.freedesktop.DBus.GLib.Async\" value=\"true\" />\n"
" <arg type=\"u\" name=\"version\" direction=\"out\" />\n"
" <arg type=\"u\" name=\"service_version\" direction=\"out\" />\n"
" </method>\n"
" <method name=\"UnWatch\">\n"
" <annotation name=\"org.freedesktop.DBus.GLib.Async\" value=\"true\" />\n"
" </method>\n"
"\n"
"<!-- Signals -->\n"
" <!-- None currently -->\n"
"\n"
" </interface>\n"
"</node>\n"
;
|