Added nsc parameter to xmldb_get()

This commit is contained in:
Olof hagsand 2019-12-02 20:55:28 +01:00
parent 08b128f4d7
commit 46552066d1
5 changed files with 12 additions and 8 deletions

View file

@ -49,9 +49,9 @@ int xmldb_validate_db(const char *db);
int xmldb_connect(clicon_handle h);
int xmldb_disconnect(clicon_handle h);
/* in clixon_datastore_read.[ch] */
int xmldb_get(clicon_handle h, const char *db, char *xpath, cxobj **xtop);
int xmldb_get(clicon_handle h, const char *db, cvec *nsc, char *xpath, cxobj **xtop);
int xmldb_get0(clicon_handle h, const char *db,
cvec *nc, char *xpath,
cvec *nsc, char *xpath,
int copy, cxobj **xtop, modstate_diff_t *msd);
int xmldb_get0_clear(clicon_handle h, cxobj *x);
int xmldb_get0_free(clicon_handle h, cxobj **xp);