X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/0a2687358e50cb8950667f050455281af6d1e1ae..b3139bf3f37b3b0244efea8b4b5e5a7d0bc90095:/stglibs/srvconf.lib/include/stg/servconf_types.h?ds=sidebyside diff --git a/stglibs/srvconf.lib/include/stg/servconf_types.h b/stglibs/srvconf.lib/include/stg/servconf_types.h index 81677c42..f323e99e 100644 --- a/stglibs/srvconf.lib/include/stg/servconf_types.h +++ b/stglibs/srvconf.lib/include/stg/servconf_types.h @@ -26,6 +26,7 @@ #include #include +#include #define STG_HEADER "SG04" #define OK_HEADER "OKHD" @@ -37,6 +38,11 @@ #define ENC_MSG_LEN (8) +struct ADMIN_CONF; +struct TARIFF_DATA; +struct SERVICE_CONF; +struct CORP_CONF; + namespace STG { @@ -64,6 +70,24 @@ confLoginCipher, confData }; +namespace SIMPLE +{ + +typedef void (* CALLBACK)(bool result, const std::string & reason, void * data); + +} // namespace SIMPLE + +namespace GET_CONTAINER +{ + +template +struct CALLBACK +{ +typedef void (* TYPE)(bool result, const std::string & reason, const std::vector & info, void * data); +}; + +} + namespace AUTH_BY { @@ -89,12 +113,12 @@ typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & } // namespace SERVER_INFO -namespace CHECK_USER +namespace RAW_XML { -typedef int (* CALLBACK)(bool result, const std::string & reason, void * data); +typedef void (* CALLBACK)(bool result, const std::string & reason, const std::string & response, void * data); -} // namespace CHECK_USER +} namespace GET_USER { @@ -139,13 +163,37 @@ typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & } // namespace GET_USER -namespace GET_USERS +namespace GET_ADMIN +{ + +typedef ADMIN_CONF INFO; +typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data); + +} + +namespace GET_TARIFF +{ + +typedef TARIFF_DATA INFO; +typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data); + +} + +namespace GET_SERVICE +{ + +typedef SERVICE_CONF INFO; +typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data); + +} + +namespace GET_CORP { -typedef std::vector INFO; +typedef CORP_CONF INFO; typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data); -} // namespace GET_USERS +} } // namespace STG