diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-02 14:18:19 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-31 10:16:41 +0100 |
commit | 871bd64410e2a1a2b20d6d89a456a951e0370dd2 (patch) | |
tree | beaebc4f495d5175d07b67f2467103bf8fe7423b /ctl-lib/ctl-config.c | |
parent | f543f058f96c30b3153305fce0bc4c3ade78758f (diff) |
Add setter/getter for user free defined pointer
Change-Id: I617f758890c3508f55d568b0e5c57c8c5d4d5dd1
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'ctl-lib/ctl-config.c')
-rw-r--r-- | ctl-lib/ctl-config.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ctl-lib/ctl-config.c b/ctl-lib/ctl-config.c index e7bdc14..accc608 100644 --- a/ctl-lib/ctl-config.c +++ b/ctl-lib/ctl-config.c @@ -26,8 +26,13 @@ #include "filescan-utils.h" #include "ctl-config.h" +extern void* getExternalData(CtlConfigT *ctlConfig) { + return ctlConfig->external; +} -// Load control config file +extern void setExternalData(CtlConfigT *ctlConfig, void *data) { + ctlConfig->external = data; +} int CtlConfigMagicNew() { static int InitRandomDone=0; |