diff options
Diffstat (limited to 'perl_dmod/Cstore/Cstore.xs')
-rw-r--r-- | perl_dmod/Cstore/Cstore.xs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/perl_dmod/Cstore/Cstore.xs b/perl_dmod/Cstore/Cstore.xs index 5dd105e..f72a124 100644 --- a/perl_dmod/Cstore/Cstore.xs +++ b/perl_dmod/Cstore/Cstore.xs @@ -54,6 +54,16 @@ OUTPUT: RETVAL +bool +Cstore::cfgPathDefault(STRVEC *vref, bool active_cfg) +PREINIT: + vector<string> arg_strvec; +CODE: + RETVAL = THIS->cfgPathDefault(arg_strvec, active_cfg); +OUTPUT: + RETVAL + + STRVEC * Cstore::cfgPathGetChildNodes(STRVEC *vref, bool active_cfg) PREINIT: |