X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/84c7cad404a6073453edcb2045a57642d5744811..1b2ab8e6d556a8ed30d4feadc72263b3f4c86665:/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 f46aadb5..f323e99e 100644 --- a/stglibs/srvconf.lib/include/stg/servconf_types.h +++ b/stglibs/srvconf.lib/include/stg/servconf_types.h @@ -39,6 +39,9 @@ #define ENC_MSG_LEN (8) struct ADMIN_CONF; +struct TARIFF_DATA; +struct SERVICE_CONF; +struct CORP_CONF; namespace STG { @@ -74,6 +77,17 @@ 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 { @@ -99,6 +113,13 @@ typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & } // namespace SERVER_INFO +namespace RAW_XML +{ + +typedef void (* CALLBACK)(bool result, const std::string & reason, const std::string & response, void * data); + +} + namespace GET_USER { @@ -142,26 +163,34 @@ typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & } // namespace GET_USER -namespace GET_USERS +namespace GET_ADMIN { -typedef std::vector INFO; +typedef ADMIN_CONF INFO; typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data); -} // namespace GET_USERS +} -namespace GET_ADMIN +namespace GET_TARIFF { -typedef ADMIN_CONF INFO; +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_ADMINS +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); }