diff options
author | Manuel Bachmann <manuel.bachmann@iot.bzh> | 2016-07-08 16:31:01 +0200 |
---|---|---|
committer | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-10-11 17:09:07 +0200 |
commit | 2de141b9a3145a4a8edf2e310adfa8d425637e53 (patch) | |
tree | 9ecf1291300fdc2a1a2915e3ce18a6b5c6a15181 /node.h | |
parent | cc70e0ae30920ca835bf011f8040afb6fea43f45 (diff) |
Implement JSON configuration file
A JSON configuration file can now be read as "/etc/
pulseaudio-agl.cfg", and a sample one is provided by the
package. If it exists and is valid, it will override the
default configuration.
As a result, the module now depends on json-c.
Change-Id: I3f5deccc6f9b89cbd54bea7004271b8aec727538
Signed-off-by: Manuel Bachmann <manuel.bachmann@iot.bzh>
Diffstat (limited to 'node.h')
-rw-r--r-- | node.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -105,6 +105,7 @@ int agl_nodeset_add_role (struct userdata *, const char *, agl_node_type, agl_no agl_node *agl_node_create (struct userdata *, agl_node *); void agl_node_destroy (struct userdata *, agl_node *); +agl_node_type agl_node_type_from_str (const char *); const char *agl_node_type_str (agl_node_type); const char *agl_node_direction_str (agl_direction); |