|
@@ -18,6 +18,7 @@ namespace AccessAuthorization {
|
|
|
#define AccessAuthService_Method_UpdateWK 3
|
|
|
#define AccessAuthService_Method_InitializeNew 4
|
|
|
#define AccessAuthService_Method_SyncTime 5
|
|
|
+#define AccessAuthService_Method_GetNetMsg 6
|
|
|
|
|
|
#define AccessAuthService_MethodSignature_Regist -1850909100
|
|
|
#define AccessAuthService_MethodSignature_Unregist 667273038
|
|
@@ -25,13 +26,7 @@ namespace AccessAuthorization {
|
|
|
#define AccessAuthService_MethodSignature_UpdateWK 949758137
|
|
|
#define AccessAuthService_MethodSignature_InitializeNew 1851143282
|
|
|
#define AccessAuthService_MethodSignature_SyncTime 1195907872
|
|
|
-
|
|
|
-#define AccessAuthService_LogCode_Regist "QLR040250200"
|
|
|
-#define AccessAuthService_LogCode_Unregist "QLR040250201"
|
|
|
-#define AccessAuthService_LogCode_InitDev "QLR040250202"
|
|
|
-#define AccessAuthService_LogCode_UpdateWK "QLR040250203"
|
|
|
-#define AccessAuthService_LogCode_InitializeNew "QLR040250204"
|
|
|
-#define AccessAuthService_LogCode_SyncTime "QLR040250205"
|
|
|
+#define AccessAuthService_MethodSignature_GetNetMsg 136486236
|
|
|
|
|
|
struct AccessAuthService_Regist_Info
|
|
|
{
|
|
@@ -125,6 +120,29 @@ struct AccessAuthService_SyncTime_Info
|
|
|
|
|
|
};
|
|
|
|
|
|
+struct AccessAuthService_GetNetMsg_Req
|
|
|
+{
|
|
|
+
|
|
|
+ void Serialize(SpBuffer &Buf)
|
|
|
+ {
|
|
|
+ }
|
|
|
+
|
|
|
+};
|
|
|
+
|
|
|
+struct AccessAuthService_GetNetMsg_Ans
|
|
|
+{
|
|
|
+ int netStatus;
|
|
|
+ CSimpleStringA netMsg;
|
|
|
+ CSimpleStringA reserved1;
|
|
|
+ CSimpleStringA reserved2;
|
|
|
+
|
|
|
+ void Serialize(SpBuffer &Buf)
|
|
|
+ {
|
|
|
+ auto & buf = Buf & netStatus & netMsg & reserved1 & reserved2;
|
|
|
+ }
|
|
|
+
|
|
|
+};
|
|
|
+
|
|
|
|
|
|
///////////////////////////
|
|
|
|