From 57fed9e5d2f1680374c3bf62a01782acea26aadf Mon Sep 17 00:00:00 2001 From: Tim Kourt Date: Fri, 14 Apr 2017 10:52:40 -0700 Subject: [PATCH] client: Additional interface property fields --- client/dbus-proxy.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/dbus-proxy.h b/client/dbus-proxy.h index 5ffe5f0a..ba8467c0 100644 --- a/client/dbus-proxy.h +++ b/client/dbus-proxy.h @@ -34,6 +34,8 @@ struct proxy_interface_property { const char *name; const char *type; void (*set)(void *data, const void *value); + const void *(*get)(const void *data); + const bool is_read_write; }; struct proxy_interface_type_ops {