Merge branch 'pc'

This commit is contained in:
Iwan Timmer
2015-07-28 12:23:03 +02:00
15 changed files with 803 additions and 55 deletions

View File

@@ -21,14 +21,24 @@
#include <stdbool.h>
#define MAX_INPUTS 6
struct input_config {
char* path;
char* mapping;
};
typedef struct _CONFIGURATION {
STREAM_CONFIGURATION stream;
char* app;
char* action;
char* address;
char* mapping;
char* platform;
bool sops;
bool localaudio;
struct input_config inputs[MAX_INPUTS];
int inputsCount;
} CONFIGURATION, *PCONFIGURATION;
bool inputAdded;