1
0
Fork 0
forked from wry/wry

dbus: expose more functionality

This commit is contained in:
Julian Orth 2022-07-30 12:48:45 +02:00
parent fc9795cb5d
commit f84b4619ba
8 changed files with 605 additions and 25 deletions

View file

@ -8,3 +8,9 @@ fn Set(interface_name: string, property_name: string, value: variant) {
fn GetAll(interface_name: string) {
props: array(dict(string, variant)),
}
sig PropertiesChanged {
interface_name: string,
changed_properties: array(dict(string, variant)),
invalidated_properties: array(string),
}

View file

@ -7,3 +7,7 @@ fn AddMatch(rule: string) { }
fn RemoveMatch(rule: string) { }
fn UpdateActivationEnvironment(environment: array(dict(string, string))) { }
fn RequestName(name: string, flags: u32) {
rv: u32,
}