#ifndef VREGISTRY_APIDEF_H #define VREGISTRY_APIDEF_H struct VREGISTRY_API{ // Set the list of variable available int (*getvars) (VREGISTRY_API *api, SSTRINGS &tb); // Set the value of a variable int (*setval) (VREGISTRY_API *api, const char *var, const char *val); // Get the value of a variable int (*getval) (VREGISTRY_API *api, const char *var, SSTRING &val); }; #endif