first commit
This commit is contained in:
commit
56dffa2749
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
BUILD/
|
7
3rdparty/CMakeLists.txt
vendored
Normal file
7
3rdparty/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
cmake_minimum_required (VERSION 3.8)
|
||||||
|
|
||||||
|
add_subdirectory(mongoose)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
1059
3rdparty/Detours/include/detours.h
vendored
Normal file
1059
3rdparty/Detours/include/detours.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
27
3rdparty/Detours/include/detver.h
vendored
Normal file
27
3rdparty/Detours/include/detver.h
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// Common version parameters.
|
||||||
|
//
|
||||||
|
// Microsoft Research Detours Package, Version 4.0.1
|
||||||
|
//
|
||||||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#define _USING_V110_SDK71_ 1
|
||||||
|
#include "winver.h"
|
||||||
|
#if 0
|
||||||
|
#include <windows.h>
|
||||||
|
#include <detours.h>
|
||||||
|
#else
|
||||||
|
#ifndef DETOURS_STRINGIFY
|
||||||
|
#define DETOURS_STRINGIFY(x) DETOURS_STRINGIFY_(x)
|
||||||
|
#define DETOURS_STRINGIFY_(x) #x
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define VER_FILEFLAGSMASK 0x3fL
|
||||||
|
#define VER_FILEFLAGS 0x0L
|
||||||
|
#define VER_FILEOS 0x00040004L
|
||||||
|
#define VER_FILETYPE 0x00000002L
|
||||||
|
#define VER_FILESUBTYPE 0x00000000L
|
||||||
|
#endif
|
||||||
|
#define VER_DETOURS_BITS DETOUR_STRINGIFY(DETOURS_BITS)
|
89
3rdparty/Detours/include/syelog.h
vendored
Normal file
89
3rdparty/Detours/include/syelog.h
vendored
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// Detours Test Program (syelog.h of syelog.lib)
|
||||||
|
//
|
||||||
|
// Microsoft Research Detours Package
|
||||||
|
//
|
||||||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
|
//
|
||||||
|
#pragma once
|
||||||
|
#ifndef _SYELOGD_H_
|
||||||
|
#define _SYELOGD_H_
|
||||||
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
#pragma pack(push, 1)
|
||||||
|
#pragma warning(push)
|
||||||
|
#pragma warning(disable: 4200)
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
//
|
||||||
|
#define SYELOG_PIPE_NAMEA "\\\\.\\pipe\\syelog"
|
||||||
|
#define SYELOG_PIPE_NAMEW L"\\\\.\\pipe\\syelog"
|
||||||
|
#ifdef UNICODE
|
||||||
|
#define SYELOG_PIPE_NAME SYELOG_PIPE_NAMEW
|
||||||
|
#else
|
||||||
|
#define SYELOG_PIPE_NAME SYELOG_PIPE_NAMEA
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
#define SYELOG_MAXIMUM_MESSAGE 4086 // 4096 - sizeof(header stuff)
|
||||||
|
|
||||||
|
typedef struct _SYELOG_MESSAGE
|
||||||
|
{
|
||||||
|
USHORT nBytes;
|
||||||
|
BYTE nFacility;
|
||||||
|
BYTE nSeverity;
|
||||||
|
DWORD nProcessId;
|
||||||
|
FILETIME ftOccurance;
|
||||||
|
BOOL fTerminate;
|
||||||
|
CHAR szMessage[SYELOG_MAXIMUM_MESSAGE];
|
||||||
|
} SYELOG_MESSAGE, *PSYELOG_MESSAGE;
|
||||||
|
|
||||||
|
|
||||||
|
// Facility Codes.
|
||||||
|
//
|
||||||
|
#define SYELOG_FACILITY_KERNEL 0x10 // OS Kernel
|
||||||
|
#define SYELOG_FACILITY_SECURITY 0x20 // OS Security
|
||||||
|
#define SYELOG_FACILITY_LOGGING 0x30 // OS Logging-internal
|
||||||
|
#define SYELOG_FACILITY_SERVICE 0x40 // User-mode system daemon
|
||||||
|
#define SYELOG_FACILITY_APPLICATION 0x50 // User-mode application
|
||||||
|
#define SYELOG_FACILITY_USER 0x60 // User self-generated.
|
||||||
|
#define SYELOG_FACILITY_LOCAL0 0x70 // Locally defined.
|
||||||
|
#define SYELOG_FACILITY_LOCAL1 0x71 // Locally defined.
|
||||||
|
#define SYELOG_FACILITY_LOCAL2 0x72 // Locally defined.
|
||||||
|
#define SYELOG_FACILITY_LOCAL3 0x73 // Locally defined.
|
||||||
|
#define SYELOG_FACILITY_LOCAL4 0x74 // Locally defined.
|
||||||
|
#define SYELOG_FACILITY_LOCAL5 0x75 // Locally defined.
|
||||||
|
#define SYELOG_FACILITY_LOCAL6 0x76 // Locally defined.
|
||||||
|
#define SYELOG_FACILITY_LOCAL7 0x77 // Locally defined.
|
||||||
|
#define SYELOG_FACILITY_LOCAL8 0x78 // Locally defined.
|
||||||
|
#define SYELOG_FACILITY_LOCAL9 0x79 // Locally defined.
|
||||||
|
|
||||||
|
// Severity Codes.
|
||||||
|
//
|
||||||
|
#define SYELOG_SEVERITY_FATAL 0x00 // System is dead.
|
||||||
|
#define SYELOG_SEVERITY_ALERT 0x10 // Take action immediately.
|
||||||
|
#define SYELOG_SEVERITY_CRITICAL 0x20 // Critical condition.
|
||||||
|
#define SYELOG_SEVERITY_ERROR 0x30 // Error
|
||||||
|
#define SYELOG_SEVERITY_WARNING 0x40 // Warning
|
||||||
|
#define SYELOG_SEVERITY_NOTICE 0x50 // Significant condition.
|
||||||
|
#define SYELOG_SEVERITY_INFORMATION 0x60 // Informational
|
||||||
|
#define SYELOG_SEVERITY_AUDIT_FAIL 0x66 // Audit Failed
|
||||||
|
#define SYELOG_SEVERITY_AUDIT_PASS 0x67 // Audit Succeeeded
|
||||||
|
#define SYELOG_SEVERITY_DEBUG 0x70 // Debugging
|
||||||
|
|
||||||
|
// Logging Functions.
|
||||||
|
//
|
||||||
|
VOID SyelogOpen(PCSTR pszIdentifier, BYTE nFacility);
|
||||||
|
VOID Syelog(BYTE nSeverity, PCSTR pszMsgf, ...);
|
||||||
|
VOID SyelogV(BYTE nSeverity, PCSTR pszMsgf, va_list args);
|
||||||
|
VOID SyelogClose(BOOL fTerminate);
|
||||||
|
|
||||||
|
#pragma warning(pop)
|
||||||
|
#pragma pack(pop)
|
||||||
|
|
||||||
|
#endif // _SYELOGD_H_
|
||||||
|
//
|
||||||
|
///////////////////////////////////////////////////////////////// End of File.
|
BIN
3rdparty/Detours/lib.X64/detours.lib
vendored
Normal file
BIN
3rdparty/Detours/lib.X64/detours.lib
vendored
Normal file
Binary file not shown.
BIN
3rdparty/Detours/lib.X64/syelog.lib
vendored
Normal file
BIN
3rdparty/Detours/lib.X64/syelog.lib
vendored
Normal file
Binary file not shown.
7
3rdparty/mongoose/CMakeLists.txt
vendored
Normal file
7
3rdparty/mongoose/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
cmake_minimum_required (VERSION 3.8)
|
||||||
|
|
||||||
|
aux_source_directory(. MONGOOSE_SOURCE)
|
||||||
|
|
||||||
|
add_library(mongoose ${MONGOOSE_SOURCE})
|
||||||
|
|
||||||
|
target_include_directories(mongoose INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
|
17594
3rdparty/mongoose/mongoose.c
vendored
Normal file
17594
3rdparty/mongoose/mongoose.c
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3013
3rdparty/mongoose/mongoose.h
vendored
Normal file
3013
3rdparty/mongoose/mongoose.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
53
CMakeLists.txt
Normal file
53
CMakeLists.txt
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
|
||||||
|
cmake_minimum_required (VERSION 3.8)
|
||||||
|
|
||||||
|
project(WeChatHelper VERSION 1.0.0)
|
||||||
|
|
||||||
|
if(NOT CMAKE_BUILD_TYPE)
|
||||||
|
set(CMAKE_BUILD_TYPE "Release")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_CXX_STANDARD 17)
|
||||||
|
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
||||||
|
add_compile_options(/MP)
|
||||||
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /std:c++17 /MD /EHsc /FAcs /DWIN32_LEAN_AND_MEAN ")
|
||||||
|
|
||||||
|
include_directories(${CMAKE_SOURCE_DIR}/lucky/src)
|
||||||
|
include_directories(${CMAKE_SOURCE_DIR}/protobuf)
|
||||||
|
include_directories(${CMAKE_SOURCE_DIR}/MMPro/include)
|
||||||
|
include_directories(${CMAKE_SOURCE_DIR}/MMPro/micromsg/src)
|
||||||
|
include_directories(${CMAKE_SOURCE_DIR}/3rdparty/mongoose/)
|
||||||
|
include_directories(${CMAKE_SOURCE_DIR}/3rdparty/Detours/include)
|
||||||
|
|
||||||
|
set(DETOURS_LIBRARY "${CMAKE_SOURCE_DIR}/3rdparty/Detours/lib.X64/detours.lib")
|
||||||
|
|
||||||
|
add_subdirectory(./3rdparty 3rdparty)
|
||||||
|
add_subdirectory(lucky lucky)
|
||||||
|
add_subdirectory(protobuf protobuf)
|
||||||
|
add_subdirectory(MMPro/micromsg micromsg)
|
||||||
|
|
||||||
|
|
||||||
|
add_library(wxhelper SHARED src/DLLMain.cc )
|
||||||
|
|
||||||
|
target_include_directories(wxhelper PRIVATE
|
||||||
|
${CMAKE_SOURCE_DIR}/lucky/src
|
||||||
|
)
|
||||||
|
|
||||||
|
target_link_libraries(
|
||||||
|
wxhelper
|
||||||
|
PRIVATE ${DETOURS_LIBRARY}
|
||||||
|
PRIVATE lucky
|
||||||
|
PRIVATE micromsg
|
||||||
|
PRIVATE protobuf
|
||||||
|
PRIVATE mongoose
|
||||||
|
)
|
||||||
|
|
||||||
|
SET_TARGET_PROPERTIES(wxhelper PROPERTIES LINKER_LANGUAGE C
|
||||||
|
ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib
|
||||||
|
LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib
|
||||||
|
RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib
|
||||||
|
OUTPUT_NAME "wxhelper"
|
||||||
|
PREFIX "")
|
||||||
|
|
||||||
|
|
9
MMPro/CMakeLists.txt
Normal file
9
MMPro/CMakeLists.txt
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
cmake_minimum_required (VERSION 3.8)
|
||||||
|
|
||||||
|
project(WeChatHelper)
|
||||||
|
|
||||||
|
add_subdirectory(micromsg)
|
||||||
|
|
||||||
|
|
||||||
|
|
783
MMPro/include/MM.h
Normal file
783
MMPro/include/MM.h
Normal file
@ -0,0 +1,783 @@
|
|||||||
|
#ifndef _MM_H
|
||||||
|
#define _MM_H
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
using std::string;
|
||||||
|
|
||||||
|
namespace MMPro {
|
||||||
|
|
||||||
|
enum RetConst
|
||||||
|
{
|
||||||
|
ERR_SERVER_FILE_EXPIRED = -5103059,
|
||||||
|
MM_BOTTLE_COUNT_ERR = 16,
|
||||||
|
MM_BOTTLE_ERR_UNKNOWNTYPE = 15,
|
||||||
|
MM_BOTTLE_NOTEXIT = 17,
|
||||||
|
MM_BOTTLE_PICKCOUNTINVALID = 19,
|
||||||
|
MM_BOTTLE_UINNOTMATCH = 18,
|
||||||
|
MM_ERR_ACCESS_DENIED = -5,
|
||||||
|
MM_ERR_ACCOUNT_BAN = -200,
|
||||||
|
MM_ERR_ALPHA_FORBIDDEN = -75,
|
||||||
|
MM_ERR_ANSWER_COUNT = -150,
|
||||||
|
MM_ERR_ARG = -2,
|
||||||
|
MM_ERR_AUTH_ANOTHERPLACE = -100,
|
||||||
|
MM_ERR_BADEMAIL = -28,
|
||||||
|
MM_ERR_BATCHGETCONTACTPROFILE_MODE = -45,
|
||||||
|
MM_ERR_BIGBIZ_AUTH = -69,
|
||||||
|
MM_ERR_BIND_EMAIL_SAME_AS_QMAIL = -86,
|
||||||
|
MM_ERR_BINDED_BY_OTHER,
|
||||||
|
MM_ERR_BINDUIN_BINDED = -50,
|
||||||
|
MM_ERR_BIZ_FANS_LIMITED = -87,
|
||||||
|
MM_ERR_BLACKLIST = -22,
|
||||||
|
MM_ERR_BLOCK_BY_SPAM = -106,
|
||||||
|
MM_ERR_BOTTLEBANBYEXPOSE = -2002,
|
||||||
|
MM_ERR_CERT_EXPIRED = -102,
|
||||||
|
MM_ERR_CHATROOM_NEED_INVITE = -2012,
|
||||||
|
MM_ERR_CHATROOM_PARTIAL_INVITE = -2013,
|
||||||
|
MM_ERR_CLIDB_ENCRYPT_KEYINFO_INVALID = -2010,
|
||||||
|
MM_ERR_CLIENT = -800000,
|
||||||
|
MM_ERR_CONNECT_INFO_URL_INVALID = -2011,
|
||||||
|
MM_ERR_COOKIE_KICK = -2008,
|
||||||
|
MM_ERR_CRITICALUPDATE = -16,
|
||||||
|
MM_ERR_DOMAINDISABLE = -27,
|
||||||
|
MM_ERR_DOMAINMAXLIMITED,
|
||||||
|
MM_ERR_DOMAINVERIFIED,
|
||||||
|
MM_ERR_EMAIL_FORMAT = -111,
|
||||||
|
MM_ERR_EMAILEXIST = -8,
|
||||||
|
MM_ERR_EMAILNOTVERIFY = -9,
|
||||||
|
MM_ERR_FACING_CREATECHATROOM_RETRY = -432,
|
||||||
|
MM_ERR_FAV_ALREADY = -400,
|
||||||
|
MM_ERR_FILE_EXPIRED = -352,
|
||||||
|
MM_ERR_FORCE_QUIT = -999999,
|
||||||
|
MM_ERR_FORCE_REDIRECT = -2005,
|
||||||
|
MM_ERR_FREQ_LIMITED = -34,
|
||||||
|
MM_ERR_GETMFRIEND_NOT_READY = -70,
|
||||||
|
MM_ERR_GMAIL_IMAP = -63,
|
||||||
|
MM_ERR_GMAIL_ONLINELIMITE = -61,
|
||||||
|
MM_ERR_GMAIL_PWD,
|
||||||
|
MM_ERR_GMAIL_WEBLOGIN = -62,
|
||||||
|
MM_ERR_HAS_BINDED = -84,
|
||||||
|
MM_ERR_HAS_NO_HEADIMG = -53,
|
||||||
|
MM_ERR_HAS_UNBINDED = -83,
|
||||||
|
MM_ERR_HAVE_BIND_FACEBOOK = -67,
|
||||||
|
MM_ERR_IDC_REDIRECT = -301,
|
||||||
|
MM_ERR_IMG_READ = -1005,
|
||||||
|
MM_ERR_INVALID_BIND_OPMODE = -37,
|
||||||
|
MM_ERR_INVALID_GROUPCARD_CONTACT = -52,
|
||||||
|
MM_ERR_INVALID_HDHEADIMG_REQ_TOTAL_LEN = -54,
|
||||||
|
MM_ERR_INVALID_UPLOADMCONTACT_OPMODE = -38,
|
||||||
|
MM_ERR_IS_NOT_OWNER = -66,
|
||||||
|
MM_ERR_KEYBUF_INVALID = -2006,
|
||||||
|
MM_ERR_LBSBANBYEXPOSE = -2001,
|
||||||
|
MM_ERR_LBSDATANOTFOUND,
|
||||||
|
MM_ERR_LOGIN_QRCODE_UUID_EXPIRED = -2007,
|
||||||
|
MM_ERR_LOGIN_URL_DEVICE_UNSAFE = -2009,
|
||||||
|
MM_ERR_MEMBER_TOOMUCH = -23,
|
||||||
|
MM_ERR_MOBILE_BINDED = -35,
|
||||||
|
MM_ERR_MOBILE_FORMAT = -41,
|
||||||
|
MM_ERR_MOBILE_NEEDADJUST = -74,
|
||||||
|
MM_ERR_MOBILE_NULL = -39,
|
||||||
|
MM_ERR_MOBILE_UNBINDED = -36,
|
||||||
|
MM_ERR_NEED_QQPWD = -49,
|
||||||
|
MM_ERR_NEED_VERIFY = -6,
|
||||||
|
MM_ERR_NEED_VERIFY_USER = -44,
|
||||||
|
MM_ERR_NEEDREG = -30,
|
||||||
|
MM_ERR_NEEDSECONDPWD = -31,
|
||||||
|
MM_ERR_NEW_USER = -79,
|
||||||
|
MM_ERR_NICEQQ_EXPIRED = -72,
|
||||||
|
MM_ERR_NICKNAMEINVALID = -15,
|
||||||
|
MM_ERR_NICKRESERVED = -11,
|
||||||
|
MM_ERR_NO_BOTTLECOUNT = -56,
|
||||||
|
MM_ERR_NO_HDHEADIMG,
|
||||||
|
MM_ERR_NO_QUESTION = -152,
|
||||||
|
MM_ERR_NO_RETRY = -101,
|
||||||
|
MM_ERR_NODATA = -203,
|
||||||
|
MM_ERR_NOTBINDQQ = -81,
|
||||||
|
MM_ERR_NOTCHATROOMCONTACT = -21,
|
||||||
|
MM_ERR_NOTMICROBLOGCONTACT,
|
||||||
|
MM_ERR_NOTOPENPRIVATEMSG,
|
||||||
|
MM_ERR_NOTQQCONTACT = -46,
|
||||||
|
MM_ERR_NOUPDATEINFO = -18,
|
||||||
|
MM_ERR_NOUSER = -4,
|
||||||
|
MM_ERR_OIDBTIMEOUT = -29,
|
||||||
|
MM_ERR_ONE_BINDTYPE_LEFT = -82,
|
||||||
|
MM_ERR_OTHER_MAIN_ACCT = -204,
|
||||||
|
MM_ERR_PARSE_MAIL = -64,
|
||||||
|
MM_ERR_PASSWORD = -3,
|
||||||
|
MM_ERR_PICKBOTTLE_NOBOTTLE = -58,
|
||||||
|
MM_ERR_QA_RELATION = -153,
|
||||||
|
MM_ERR_QQ_BAN = -201,
|
||||||
|
MM_ERR_QQ_OK_NEED_MOBILE = -205,
|
||||||
|
MM_ERR_QRCODEVERIFY_BANBYEXPOSE = -2004,
|
||||||
|
MM_ERR_QUESTION_COUNT = -151,
|
||||||
|
MM_ERR_RADAR_PASSWORD_SIMPLE = -431,
|
||||||
|
MM_ERR_RECOMMENDEDUPDATE = -17,
|
||||||
|
MM_ERR_REG_BUT_LOGIN = -212,
|
||||||
|
MM_ERR_REVOKEMSG_TIMEOUT = -430,
|
||||||
|
MM_ERR_SEND_VERIFYCODE = -57,
|
||||||
|
MM_ERR_SESSIONTIMEOUT = -13,
|
||||||
|
MM_ERR_SHAKE_TRAN_IMG_CANCEL = -90,
|
||||||
|
MM_ERR_SHAKE_TRAN_IMG_CONTINUE = -92,
|
||||||
|
MM_ERR_SHAKE_TRAN_IMG_NOTFOUND,
|
||||||
|
MM_ERR_SHAKE_TRAN_IMG_OTHER = -93,
|
||||||
|
MM_ERR_SHAKEBANBYEXPOSE = -2003,
|
||||||
|
MM_ERR_SHORTVIDEO_CANCEL = 1000000,
|
||||||
|
MM_ERR_SPAM = -24,
|
||||||
|
MM_ERR_SVR_MOBILE_FORMAT = -78,
|
||||||
|
MM_ERR_SYS = -1,
|
||||||
|
MM_ERR_TICKET_NOTFOUND = -48,
|
||||||
|
MM_ERR_TICKET_UNMATCH,
|
||||||
|
MM_ERR_TOLIST_LIMITED = -71,
|
||||||
|
MM_ERR_TRYQQPWD = -73,
|
||||||
|
MM_ERR_UINEXIST = -12,
|
||||||
|
MM_ERR_UNBIND_MAIN_ACCT = -206,
|
||||||
|
MM_ERR_UNBIND_MOBILE_NEED_QQPWD = -202,
|
||||||
|
MM_ERR_UNBIND_REGBYMOBILE = -65,
|
||||||
|
MM_ERR_UNMATCH_MOBILE = -40,
|
||||||
|
MM_ERR_UNSUPPORT_COUNTRY = -59,
|
||||||
|
MM_ERR_USER_BIND_MOBILE = -43,
|
||||||
|
MM_ERR_USER_MOBILE_UNMATCH,
|
||||||
|
MM_ERR_USER_NOT_SUPPORT = -94,
|
||||||
|
MM_ERR_USER_NOT_VERIFYUSER = -302,
|
||||||
|
MM_ERR_USEREXIST = -7,
|
||||||
|
MM_ERR_USERNAMEINVALID = -14,
|
||||||
|
MM_ERR_USERRESERVED = -10,
|
||||||
|
MM_ERR_UUID_BINDED = -76,
|
||||||
|
MM_ERR_VERIFYCODE_NOTEXIST = -51,
|
||||||
|
MM_ERR_VERIFYCODE_TIMEOUT = -33,
|
||||||
|
MM_ERR_VERIFYCODE_UNMATCH,
|
||||||
|
MM_ERR_WEIBO_PUSH_TRANS = -80,
|
||||||
|
MM_ERR_WRONG_SESSION_KEY = -77,
|
||||||
|
MM_FACEBOOK_ACCESSTOKEN_UNVALID = -68,
|
||||||
|
MM_OK = 0,
|
||||||
|
MMSNS_RET_BAN = 202,
|
||||||
|
MMSNS_RET_CLIENTID_EXIST = 206,
|
||||||
|
MMSNS_RET_COMMENT_HAVE_LIKE = 204,
|
||||||
|
MMSNS_RET_COMMENT_NOT_ALLOW,
|
||||||
|
MMSNS_RET_COMMENT_PRIVACY = 208,
|
||||||
|
MMSNS_RET_ISALL = 207,
|
||||||
|
MMSNS_RET_PRIVACY = 203,
|
||||||
|
MMSNS_RET_SPAM = 201
|
||||||
|
};
|
||||||
|
|
||||||
|
enum syncScene
|
||||||
|
{
|
||||||
|
MM_NEWSYNC_SCENE_AFTERINIT = 5,
|
||||||
|
MM_NEWSYNC_SCENE_BG2FG = 3,
|
||||||
|
MM_NEWSYNC_SCENE_CONTINUEFLAG = 6,
|
||||||
|
MM_NEWSYNC_SCENE_NOTIFY = 1,
|
||||||
|
MM_NEWSYNC_SCENE_OTHER = 7,
|
||||||
|
MM_NEWSYNC_SCENE_PROCESSSTART = 4,
|
||||||
|
MM_NEWSYNC_SCENE_TIMER = 2
|
||||||
|
};
|
||||||
|
|
||||||
|
enum enMMTenPayCgiCmd
|
||||||
|
{
|
||||||
|
MMTENPAY_BIZ_CGICMD_PLATFORM_NOTIFY_CHECK_RESULT = 27,
|
||||||
|
MMTENPAY_BIZ_CGICMD_PLATFORM_QUERY_BZJ_INFO = 34,
|
||||||
|
MMTENPAY_BIZ_CGICMD_PLATFORM_QUERY_CHECK_RECORD = 23,
|
||||||
|
MMTENPAY_BIZ_CGICMD_PLATFORM_QUERY_CHECK_RESULT = 25,
|
||||||
|
MMTENPAY_BIZ_CGICMD_QUERY_BIZ_CHECK_RESULT = 56,
|
||||||
|
MMTENPAY_BIZ_CGICMD_QUERY_NEW_PARTNER_ID = 55,
|
||||||
|
MMTENPAY_BIZ_CGICMD_WEB_NOTIFY_CHECK_RESULT = 26,
|
||||||
|
MMTENPAY_BIZ_CGICMD_WEB_QUERY_CHECK_RECORD = 22,
|
||||||
|
MMTENPAY_BIZ_CGICMD_WEB_QUERY_CHECK_RESULT = 24,
|
||||||
|
MMTENPAY_BIZ_CGICMD_WX_QRY_AUTH_INFO = 70,
|
||||||
|
MMTENPAY_CGICMD_AUTHEN = 0,
|
||||||
|
MMTENPAY_CGICMD_BANK_QUERY = 7,
|
||||||
|
MMTENPAY_CGICMD_BANKCARDBIN_QUERY = 15,
|
||||||
|
MMTENPAY_CGICMD_BIND_AUTHEN = 12,
|
||||||
|
MMTENPAY_CGICMD_BIND_QUERY_NEW = 72,
|
||||||
|
MMTENPAY_CGICMD_BIND_VERIFY = 13,
|
||||||
|
MMTENPAY_CGICMD_BIND_VERIFY_REG = 17,
|
||||||
|
MMTENPAY_CGICMD_CHANGE_PWD = 9,
|
||||||
|
MMTENPAY_CGICMD_CHECK_PWD = 18,
|
||||||
|
MMTENPAY_CGICMD_CHKPAYACC = 79,
|
||||||
|
MMTENPAY_CGICMD_ELEM_QUERY_NEW = 73,
|
||||||
|
MMTENPAY_CGICMD_GEN_PRE_FETCH = 75,
|
||||||
|
MMTENPAY_CGICMD_GEN_PRE_SAVE = 74,
|
||||||
|
MMTENPAY_CGICMD_GEN_PRE_TRANSFER = 83,
|
||||||
|
MMTENPAY_CGICMD_GET_FIXED_AMOUNT_QRCODE = 94,
|
||||||
|
MMTENPAY_CGICMD_IMPORT_BIND_QUERY = 37,
|
||||||
|
MMTENPAY_CGICMD_IMPORT_ENCRYPT_QUERY,
|
||||||
|
MMTENPAY_CGICMD_MCH_TRADE = 28,
|
||||||
|
MMTENPAY_CGICMD_NONPAY = 92,
|
||||||
|
MMTENPAY_CGICMD_OFFLINE_CHG_FEE = 50,
|
||||||
|
MMTENPAY_CGICMD_OFFLINE_CLOSE = 47,
|
||||||
|
MMTENPAY_CGICMD_OFFLINE_CREATE = 46,
|
||||||
|
MMTENPAY_CGICMD_OFFLINE_FPAY = 48,
|
||||||
|
MMTENPAY_CGICMD_OFFLINE_GET_TOKEN = 52,
|
||||||
|
MMTENPAY_CGICMD_OFFLINE_QUERY_USER = 49,
|
||||||
|
MMTENPAY_CGICMD_OFFLINE_UNFREEZE = 51,
|
||||||
|
MMTENPAY_CGICMD_PAYRELAY = 87,
|
||||||
|
MMTENPAY_CGICMD_PAYUNREG = 71,
|
||||||
|
MMTENPAY_CGICMD__API = 21,
|
||||||
|
MMTENPAY_CGICMD_QRCODE_CREATE = 5,
|
||||||
|
MMTENPAY_CGICMD_QRCODE_TO_BARCODE = 78,
|
||||||
|
MMTENPAY_CGICMD_QRCODE_USE = 6,
|
||||||
|
MMTENPAY_CGICMD_QUERY_REFUND = 80,
|
||||||
|
MMTENPAY_CGICMD_QUERY_TRANSFER_STATUS = 84,
|
||||||
|
MMTENPAY_CGICMD_QUERY_USER_TYPE = 30,
|
||||||
|
MMTENPAY_CGICMD_RESET_PWD = 20,
|
||||||
|
MMTENPAY_CGICMD_RESET_PWD_AUTHEN = 10,
|
||||||
|
MMTENPAY_CGICMD_RESET_PWD_VERIFY,
|
||||||
|
MMTENPAY_CGICMD_TIMESEED = 19,
|
||||||
|
MMTENPAY_CGICMD_TRANSFEAR_SEND_CANCEL_MSG = 97,
|
||||||
|
MMTENPAY_CGICMD_TRANSFER_CONFIRM = 85,
|
||||||
|
MMTENPAY_CGICMD_TRANSFER_GET_USERNAME = 95,
|
||||||
|
MMTENPAY_CGICMD_TRANSFER_RETRYSENDMESSAGE = 86,
|
||||||
|
MMTENPAY_CGICMD_UNBIND = 14,
|
||||||
|
MMTENPAY_CGICMD_USER_ROLL = 3,
|
||||||
|
MMTENPAY_CGICMD_USER_ROLL_BATCH,
|
||||||
|
MMTENPAY_CGICMD_USER_ROLL_SAVE_AND_FETCH = 77,
|
||||||
|
MMTENPAY_CGICMD_VERIFY = 1,
|
||||||
|
MMTENPAY_CGICMD_VERIFY_BIND = 76,
|
||||||
|
MMTENPAY_CGICMD_VERIFY_REG = 16,
|
||||||
|
MMTENPAY_CGICMD_WX_FUND_ACCOUNT_QUERY = 43,
|
||||||
|
MMTENPAY_CGICMD_WX_FUND_BINDSP_QUERY = 42,
|
||||||
|
MMTENPAY_CGICMD_WX_FUND_BUY = 39,
|
||||||
|
MMTENPAY_CGICMD_WX_FUND_CHANGE = 41,
|
||||||
|
MMTENPAY_CGICMD_WX_FUND_PROFIT_QUERY = 44,
|
||||||
|
MMTENPAY_CGICMD_WX_FUND_REDEM = 40,
|
||||||
|
MMTENPAY_CGICMD_WX_FUND_SUPPORT_BANK = 45,
|
||||||
|
MMTENPAY_CGICMD_WX_GET_MERSIGN_ORDER = 88,
|
||||||
|
MMTENPAY_CGICMD_WX_GET_MERSIGN_SIMPLE = 90,
|
||||||
|
MMTENPAY_CGICMD_WX_HB_REDPACKETNOTIFY = 53,
|
||||||
|
MMTENPAY_CGICMD_WX_HBAA_TRANSFER = 81,
|
||||||
|
MMTENPAY_CGICMD_WX_OFFLINE_AUTHEN = 35,
|
||||||
|
MMTENPAY_CGICMD_WX_OFFLINE_PAY,
|
||||||
|
MMTENPAY_CGICMD_WX_PAY_CONFIRM = 82,
|
||||||
|
MMTENPAY_CGICMD_WX_QUERY_BANK_ROLL_LIST_BATCH = 93,
|
||||||
|
MMTENPAY_CGICMD_WX_QUERY_ORDER = 96,
|
||||||
|
MMTENPAY_CGICMD_WX_QUERY_SP_BANK = 91,
|
||||||
|
MMTENPAY_CGICMD_WX_SP_CLOSE_ORDER = 54,
|
||||||
|
MMTENPAY_CGICMD_WX_VERIFY_MERSIGN = 89,
|
||||||
|
MMTENPAY_CGICMD_WXCREDIT_AUTHEN = 64,
|
||||||
|
MMTENPAY_CGICMD_WXCREDIT_COMMIT_QUESTION = 60,
|
||||||
|
MMTENPAY_CGICMD_WXCREDIT_QUERY = 57,
|
||||||
|
MMTENPAY_CGICMD_WXCREDIT_QUERY_BILL_DETAIL = 67,
|
||||||
|
MMTENPAY_CGICMD_WXCREDIT_QUERY_CARD_DETAIL = 58,
|
||||||
|
MMTENPAY_CGICMD_WXCREDIT_QUERY_PRIVILEGE = 68,
|
||||||
|
MMTENPAY_CGICMD_WXCREDIT_QUERY_QUESTION = 59,
|
||||||
|
MMTENPAY_CGICMD_WXCREDIT_RENEW_IDENTIFY = 69,
|
||||||
|
MMTENPAY_CGICMD_WXCREDIT_REPAY = 61,
|
||||||
|
MMTENPAY_CGICMD_WXCREDIT_SIMPLE_VERIFY = 66,
|
||||||
|
MMTENPAY_CGICMD_WXCREDIT_UNBIND = 62,
|
||||||
|
MMTENPAY_CGICMD_WXCREDIT_VERIFY = 65,
|
||||||
|
MMTENPAY_CGICMD_WXCREDIT_VERIFY_PASSWD = 63,
|
||||||
|
MMTENPAY_GW_CGICMD_NORMAL_ORDER_QUERY = 29,
|
||||||
|
MMTENPAY_GW_CGICMD_NORMAL_REFUND_QUERY = 33,
|
||||||
|
MMTENPAY_GW_CGICMD_VERIFY_NOTIFY_ID = 31
|
||||||
|
};
|
||||||
|
|
||||||
|
enum LongLinkCmdId
|
||||||
|
{
|
||||||
|
SEND_DOWNLOADVOICE = 20,
|
||||||
|
RECV_DOWNLOADVOICE = 1000000020,
|
||||||
|
SEND_GETPROFILE = 118,
|
||||||
|
RECV_GETPROFILE = 1000000118,
|
||||||
|
SEND_GETLOGINQRCODE = 232,
|
||||||
|
RECV_GETLOGINQRCODE = 1000000232,
|
||||||
|
SEND_CHECKLOGINQRCODE_CMDID = 233,
|
||||||
|
RECV_CHECKLOGINQRCODE_CMDID = 1000000233,
|
||||||
|
RECV_PUSH_CMDID = 24,
|
||||||
|
SEND_NOOP_CMDID = 6,
|
||||||
|
SEND_MSGIMG_CMDID = 9,
|
||||||
|
RECV_MSGIMG_CMDID = 1000000009,
|
||||||
|
RECV_NOOP_CMDID = 1000000006,
|
||||||
|
SEND_NEWSYNC_CMDID = 121,
|
||||||
|
RECV_NEWSYNC_CMDID = 1000000121,
|
||||||
|
LONGLINK_IDENTIFY_REQ = 205,
|
||||||
|
LONGLINK_IDENTIFY_RESP = 1000000205,
|
||||||
|
PUSH_DATA_CMDID = 122,
|
||||||
|
SEND_SYNC_SUCCESS = 1000000190,
|
||||||
|
SIGNALKEEP_CMDID = 243,
|
||||||
|
NEWSENDMSG = 237,
|
||||||
|
SEND_MANUALAUTH_CMDID = 253
|
||||||
|
};
|
||||||
|
|
||||||
|
enum CGI_TYPE
|
||||||
|
{
|
||||||
|
CGI_TYPE_INITCONTACT = 851,
|
||||||
|
CGI_TYPE_EXTDEVICELOGINCONFIRMGET = 971,
|
||||||
|
CGI_TYPE_SNSOBJECTOP = 218,
|
||||||
|
CGI_TYPE_MMSNSTAGLIST = 292,
|
||||||
|
CGI_TYPE_MMSNSPORT = 209,
|
||||||
|
CGI_TYPE_MMSNSOBJECTDETAIL,
|
||||||
|
CGI_TYPE_MMSNSTIMELINE,
|
||||||
|
CGI_TYPE_MMSNSSYNC = 214,
|
||||||
|
CGI_TYPE_OPLOG = 681,
|
||||||
|
CGI_TYPE_DEFAULT = 0,
|
||||||
|
CGI_TYPE_GETOPENIMRESOURCE = 453,
|
||||||
|
CGI_TYPE_GETLOGINQRCODE = 502,
|
||||||
|
CGI_TYPE_CHECKLOGINQRCODE,
|
||||||
|
CGI_TYPE_NEWSENDMSG = 522,
|
||||||
|
CGI_TYPE_GETEMOTIONDESC = 521,
|
||||||
|
CGI_TYPE_SENDEMOJI = 175,
|
||||||
|
CGI_TYPE_NEWSYNC = 138,
|
||||||
|
CGI_TYPE_MANUALAUTH = 701,
|
||||||
|
CGI_TYPE_UPLOADIMAGE = 625,
|
||||||
|
CGI_TYPE_UPLOADMCONTACT = 133,
|
||||||
|
CGI_TYPE_FAVSYNC = 400,
|
||||||
|
CGI_TYPE_ADDFAVITEM,
|
||||||
|
CGI_TYPE_BATCHGETFAVITEM,
|
||||||
|
CGI_TYPE_GETPROFILE = 302,
|
||||||
|
CGI_TYPE_GETFAVINFO = 438,
|
||||||
|
CGI_TYPE_GETCONTACTLABELLIST = 639,
|
||||||
|
CGI_TYPE_UPLOADVOICE = 127,
|
||||||
|
CGI_TYPE_SENDAPPMSG = 222,
|
||||||
|
CGI_TYPE_UPLOADVIDEO = 149,
|
||||||
|
CGI_TYPE_MMSNSUSERPAGE = 212,
|
||||||
|
CGI_TYPE_MMSNSUPLOAD = 207,
|
||||||
|
CGI_TYPE_MMSNSCOMMENT = 213,
|
||||||
|
CGI_TYPE_GETCONTACT = 182,
|
||||||
|
CGI_TYPE_GETCDNDNS = 379,
|
||||||
|
CGI_TYPE_GETMSGIMG = 109,
|
||||||
|
CGI_TYPE_STATUSNOTIFY = 251,
|
||||||
|
CGI_TYPE_GETCHATROOMMEMBERDETAIL = 551,
|
||||||
|
CGI_TYPE_GETCHATROOMINFODETAIL = 223,
|
||||||
|
CGI_TYPE_DOWNLOADVOICE = 128,
|
||||||
|
CGI_TYPE_HEARTBEAT = 518,
|
||||||
|
CGI_TYPE_GETONLINEINFO = 526,
|
||||||
|
CGI_TYPE_PUSHLOGINURL = 654,
|
||||||
|
CGI_TYPE_TENPAY = 385,
|
||||||
|
CGI_TYPE_F2FQRCODE = 1588,
|
||||||
|
CGI_TYPE_TRANSFERSETF2FFEE = 1623,
|
||||||
|
CGI_TYPE_GETPAYFUNCTIONLIST = 495,
|
||||||
|
CGI_TYPE_GETBANNERINFO = 1679,
|
||||||
|
CGI_TYPE_TIMESEED = 477,
|
||||||
|
CGI_TYPE_TRANSFERQUERY = 1628,
|
||||||
|
CGI_TYPE_GETTRANSFERWORDINH = 1992,
|
||||||
|
CGI_TYPE_TRANSFEROPERATION = 1691,
|
||||||
|
CGI_TYPE_BINDQUERYNEW = 1501,
|
||||||
|
CGI_TYPE_VERIFYUSER = 137,
|
||||||
|
CGI_TYPE_CREATECHATROOM = 119,
|
||||||
|
CGI_TYPE_BATCHGETHEADIMG = 123,
|
||||||
|
CGI_TYPE_ADDCHATROOMMEMBER = 120,
|
||||||
|
CGI_TYPE_DELCHATROOMMEMBER = 179,
|
||||||
|
CGI_TYPE_GETA8KEY = 233,
|
||||||
|
CGI_TYPE_ADEXPOSURE = 1231,
|
||||||
|
CGI_TYPE_ADCLICK,
|
||||||
|
CGI_TYPE_MASSSEND = 193,
|
||||||
|
CGI_TYPE_RECEIVEWXHB = 1581,
|
||||||
|
CGI_TYPE_OPENWXHB = 1685,
|
||||||
|
CGI_TYPE_QRYDETAILWXHB = 1585,
|
||||||
|
CGI_TYPE_QRYLISTWXHB = 1514,
|
||||||
|
CGI_TYPE_WISHWXHB = 1682,
|
||||||
|
CGI_TYPE_NEWGETINVITEFRIEND = 135,
|
||||||
|
CGI_TYPE_LBSFIND = 148,
|
||||||
|
CGI_TYPE_SETCHATROOMANNOUNCEMENT = 993,
|
||||||
|
CGI_TYPE_GETQRCODE = 168,
|
||||||
|
CGI_TYPE_SEARCHCONTACT = 106
|
||||||
|
};
|
||||||
|
|
||||||
|
enum CmdConst
|
||||||
|
{
|
||||||
|
MM_CMDID_CancelQRPay = 198,
|
||||||
|
MM_CMDID_GenPrepay = 189,
|
||||||
|
MM_CMDID_GetBizIapDetail = 234,
|
||||||
|
MM_CMDID_GetBizIapPayResult,
|
||||||
|
MM_CMDID_GetLatestPayProductInfo = 229,
|
||||||
|
MM_CMDID_GetOrderList = 236,
|
||||||
|
MM_CMDID_GetPayFunctionList = 227,
|
||||||
|
MM_CMDID_GetPayFunctionProductList,
|
||||||
|
MM_CMDID_GetProductInfo = 219,
|
||||||
|
MM_CMDID_NEW_YEAR_SHAKE_REQ = 309,
|
||||||
|
MM_CMDID_NEW_YEAR_SHAKE_RESP = 1000000309,
|
||||||
|
MM_CMDID_PayAuthApp = 188,
|
||||||
|
MM_CMDID_PayDelUserRoll = 187,
|
||||||
|
MM_CMDID_PayQueryUserRoll = 186,
|
||||||
|
MM_CMDID_PaySubscribe = 206,
|
||||||
|
MM_CMDID_PreparePurchase = 214,
|
||||||
|
MM_CMDID_RcptInfoAdd = 200,
|
||||||
|
MM_CMDID_RcptInfoQuery = 202,
|
||||||
|
MM_CMDID_RcptInfoRemove = 201,
|
||||||
|
MM_CMDID_RcptInfoTouch = 204,
|
||||||
|
MM_CMDID_RcptInfoUpdate = 203,
|
||||||
|
MM_CMDID_SubmitPayProductBuyInfo = 230,
|
||||||
|
MM_CMDID_TenPay = 185,
|
||||||
|
MM_CMDID_VerifyPurchase = 215,
|
||||||
|
MM_PKT_ADD_FAV_ITEM_REQ = 193,
|
||||||
|
MM_PKT_ADD_FAV_ITEM_RESP = 1000000193,
|
||||||
|
MM_PKT_ADDCHATROOMMEMBER_REQ = 36,
|
||||||
|
MM_PKT_ASYNCDOWNLOADVOICE_REQ = 22,
|
||||||
|
MM_PKT_ASYNCDOWNLOADVOICE_RESP = 1000000022,
|
||||||
|
MM_PKT_AUTH_RESP = 1000000001,
|
||||||
|
MM_PKT_BAKCHAT_RECOVER_DATA_REQ = 140,
|
||||||
|
MM_PKT_BAKCHAT_RECOVER_DATA_RESP = 1000000140,
|
||||||
|
MM_PKT_BAKCHAT_RECOVER_DELETE_REQ = 141,
|
||||||
|
MM_PKT_BAKCHAT_RECOVER_DELETE_RESP = 1000000141,
|
||||||
|
MM_PKT_BAKCHAT_RECOVER_GETLIST_REQ = 138,
|
||||||
|
MM_PKT_BAKCHAT_RECOVER_GETLIST_RESP = 1000000138,
|
||||||
|
MM_PKT_BAKCHAT_RECOVER_HEAD_REQ = 139,
|
||||||
|
MM_PKT_BAKCHAT_RECOVER_HEAD_RESP = 1000000139,
|
||||||
|
MM_PKT_BAKCHAT_UPLOAD_END_REQ = 135,
|
||||||
|
MM_PKT_BAKCHAT_UPLOAD_END_RESP = 1000000135,
|
||||||
|
MM_PKT_BAKCHAT_UPLOAD_HEAD_REQ = 134,
|
||||||
|
MM_PKT_BAKCHAT_UPLOAD_HEAD_RESP = 1000000134,
|
||||||
|
MM_PKT_BAKCHAT_UPLOAD_MEDIA_REQ = 137,
|
||||||
|
MM_PKT_BAKCHAT_UPLOAD_MEDIA_RESP = 1000000137,
|
||||||
|
MM_PKT_BAKCHAT_UPLOAD_MSG_REQ = 136,
|
||||||
|
MM_PKT_BAKCHAT_UPLOAD_MSG_RESP = 1000000136,
|
||||||
|
MM_PKT_BATCH_DEL_FAV_ITEM_REQ = 194,
|
||||||
|
MM_PKT_BATCH_DEL_FAV_ITEM_RESP = 1000000194,
|
||||||
|
MM_PKT_BATCH_GET_SHAKE_TRAN_IMG_REQ = 129,
|
||||||
|
MM_PKT_BATCH_GET_SHAKE_TRAN_IMG_RESP = 1000000129,
|
||||||
|
MM_PKT_BATCHGETCONTACTPROFILE_REQ = 28,
|
||||||
|
MM_PKT_BATCHGETCONTACTPROFILE_RESP = 1000000028,
|
||||||
|
MM_PKT_BULLETIN_REQ = 72,
|
||||||
|
MM_PKT_CHECKUNBIND_REQ = 131,
|
||||||
|
MM_PKT_CHECKUNBIND_RESP = 1000000131,
|
||||||
|
MM_PKT_CLICK_COMMAND_REQ = 176,
|
||||||
|
MM_PKT_CLICK_COMMAND_RESP = 1000000176,
|
||||||
|
MM_PKT_CONNCONTROL_REQ = 11,
|
||||||
|
MM_PKT_CREATECHATROOM_REQ = 37,
|
||||||
|
MM_PKT_DEL_SAFEDEVICE_REQ = 172,
|
||||||
|
MM_PKT_DEL_SAFEDEVICE_RESP = 1000000172,
|
||||||
|
MM_PKT_DIRECTSEND_REQ = 8,
|
||||||
|
MM_PKT_DOWNLOAD_APP_ATTACH_REQ = 106,
|
||||||
|
MM_PKT_DOWNLOAD_APP_ATTACH_RESP = 1000000106,
|
||||||
|
MM_PKT_DOWNLOADVIDEO_REQ = 40,
|
||||||
|
MM_PKT_DOWNLOADVOICE_REQ = 20,
|
||||||
|
MM_PKT_DOWNLOADVOICE_RESP = 1000000020,
|
||||||
|
MM_PKT_EXCHANGE_EMOTION_PACK_REQ = 213,
|
||||||
|
MM_PKT_EXCHANGE_EMOTION_PACK_RESP = 1000000213,
|
||||||
|
MM_PKT_EXPOSE_REQ = 59,
|
||||||
|
MM_PKT_EXPOSE_RESP = 1000000059,
|
||||||
|
MM_PKT_FAV_CHECKCDN_REQ = 197,
|
||||||
|
MM_PKT_FAV_CHECKCDN_RESP = 1000000197,
|
||||||
|
MM_PKT_FAV_SYNC_REQ = 195,
|
||||||
|
MM_PKT_FAV_SYNC_RESP = 1000000195,
|
||||||
|
MM_PKT_FAVNOTIFY_REQ = 192,
|
||||||
|
MM_PKT_FIXSYNCCHECK_REQ = 30,
|
||||||
|
MM_PKT_FIXSYNCCHECK_RESP = 1000000030,
|
||||||
|
MM_PKT_GENERALSET_REQ = 70,
|
||||||
|
MM_PKT_GENERALSET_RESP = 1000000070,
|
||||||
|
MM_PKT_GET_APP_INFO__RESP = 1000000108,
|
||||||
|
MM_PKT_GET_APP_INFO_REQ = 108,
|
||||||
|
MM_PKT_GET_CERT_REQ = 179,
|
||||||
|
MM_PKT_GET_CERT_RESP = 1000000179,
|
||||||
|
MM_PKT_GET_EMOTION_DETAIL_REQ = 211,
|
||||||
|
MM_PKT_GET_EMOTION_DETAIL_RESP = 1000000211,
|
||||||
|
MM_PKT_GET_EMOTION_LIST_REQ = 210,
|
||||||
|
MM_PKT_GET_EMOTION_LIST_RESP = 1000000210,
|
||||||
|
MM_PKT_GET_FAV_INFO_REQ = 217,
|
||||||
|
MM_PKT_GET_FAV_INFO_RESP = 1000000217,
|
||||||
|
MM_PKT_GET_PROFILE_REQ = 118,
|
||||||
|
MM_PKT_GET_PROFILE_RESP = 1000000118,
|
||||||
|
MM_PKT_GET_QRCODE_REQ = 67,
|
||||||
|
MM_PKT_GET_QRCODE_RESP = 1000000067,
|
||||||
|
MM_PKT_GET_RECOMMEND_APP_LIST_REQ = 109,
|
||||||
|
MM_PKT_GET_RECOMMEND_APP_LIST_RESP = 1000000109,
|
||||||
|
MM_PKT_GETA8KEY_REQ = 155,
|
||||||
|
MM_PKT_GETA8KEY_RESP = 1000000155,
|
||||||
|
MM_PKT_GETCONTACT_REQ = 71,
|
||||||
|
MM_PKT_GETCONTACT_RESP = 1000000071,
|
||||||
|
MM_PKT_GETINVITEFRIEND_REQ = 18,
|
||||||
|
MM_PKT_GETINVITEFRIEND_RESP = 1000000018,
|
||||||
|
MM_PKT_GETMSGIMG_REQ = 10,
|
||||||
|
MM_PKT_GETMSGIMG_RESP = 1000000010,
|
||||||
|
MM_PKT_GETPSMIMG_REQ = 29,
|
||||||
|
MM_PKT_GETPSMIMG_RESP = 1000000029,
|
||||||
|
MM_PKT_GETQQGROUP_REQ = 38,
|
||||||
|
MM_PKT_GETQQGROUP_RESP = 1000000038,
|
||||||
|
MM_PKT_GETUPDATEINFO_REQ = 35,
|
||||||
|
MM_PKT_GETUPDATEPACK_REQ = 16,
|
||||||
|
MM_PKT_GETUPDATEPACK_RESP = 1000000016,
|
||||||
|
MM_PKT_GETUSERIMG_REQ = 15,
|
||||||
|
MM_PKT_GETUSERIMG_RESP = 1000000015,
|
||||||
|
MM_PKT_GETUSERNAME_REQ = 33,
|
||||||
|
MM_PKT_GETUSERNAME_RESP = 1000000033,
|
||||||
|
MM_PKT_GETVERIFYIMG_REQ = 48,
|
||||||
|
MM_PKT_GETVUSERINFO_REQ = 60,
|
||||||
|
MM_PKT_GETVUSERINFO_RESP = 1000000060,
|
||||||
|
MM_PKT_INIT_REQ = 14,
|
||||||
|
MM_PKT_INIT_RESP = 1000000014,
|
||||||
|
MM_PKT_INVALID_REQ = 0,
|
||||||
|
MM_PKT_KvReportRsa_REQ = 218,
|
||||||
|
MM_PKT_KvReportRsa_RESP = 1000000218,
|
||||||
|
MM_PKT_LBS_ROOM_MEMBER_REQ = 184,
|
||||||
|
MM_PKT_LBS_ROOM_MEMBER_RESP = 1000000184,
|
||||||
|
MM_PKT_LBS_ROOM_REQ = 183,
|
||||||
|
MM_PKT_LBS_ROOM_RESP = 1000000183,
|
||||||
|
MM_PKT_MASS_SEND_REQ = 84,
|
||||||
|
MM_PKT_MASS_SEND_RESP = 1000000084,
|
||||||
|
MM_PKT_MOD_EMOTION_PACK_REQ = 212,
|
||||||
|
MM_PKT_MOD_EMOTION_PACK_RESP = 1000000212,
|
||||||
|
MM_PKT_MOD_FAV_ITEM_REQ = 216,
|
||||||
|
MM_PKT_MOD_FAV_ITEM_RESP = 1000000216,
|
||||||
|
MM_PKT_NEW_AUTH_REQ = 178,
|
||||||
|
MM_PKT_NEW_AUTH_RESP = 1000000178,
|
||||||
|
MM_PKT_NEWGETINVITEFRIEND_REQ = 23,
|
||||||
|
MM_PKT_NEWGETINVITEFRIEND_RESP = 1000000023,
|
||||||
|
MM_PKT_NEWINIT_REQ = 27,
|
||||||
|
MM_PKT_NEWINIT_RESP = 1000000027,
|
||||||
|
MM_PKT_NEWNOTIFY_REQ = 24,
|
||||||
|
MM_PKT_NEWNOTIFY_RESP = 1000000024,
|
||||||
|
MM_PKT_NEWREG_REQ = 32,
|
||||||
|
MM_PKT_NEWREG_RESP = 1000000032,
|
||||||
|
MM_PKT_NEWSENDMSG_REQ = 237,
|
||||||
|
MM_PKT_NEWSENDMSG_RESP = 1000000237,
|
||||||
|
MM_PKT_NEWSYNC_REQ = 26,
|
||||||
|
MM_PKT_NEWSYNC_RESP = 1000000026,
|
||||||
|
MM_PKT_NEWSYNCCHECK_REQ = 25,
|
||||||
|
MM_PKT_NEWSYNCCHECK_RESP = 1000000025,
|
||||||
|
MM_PKT_NOOP_REQ = 6,
|
||||||
|
MM_PKT_NOOP_RESP = 1000000006,
|
||||||
|
MM_PKT_NOTIFY_REQ = 5,
|
||||||
|
MM_PKT_PREPARE_PURCHASE_REQ = 214,
|
||||||
|
MM_PKT_PREPARE_PURCHASE_RESP = 1000000214,
|
||||||
|
MM_PKT_QUERY_HAS_PASSWD_REQ = 132,
|
||||||
|
MM_PKT_QUERY_HAS_PASSWD_RESP = 1000000132,
|
||||||
|
MM_PKT_QUIT_REQ = 7,
|
||||||
|
MM_PKT_REDIRECT_REQ = 12,
|
||||||
|
MM_PKT_REG_REQ = 31,
|
||||||
|
MM_PKT_REG_RESP = 1000000031,
|
||||||
|
MM_PKT_SEARCHCONTACT_REQ = 34,
|
||||||
|
MM_PKT_SEARCHFRIEND_REQ = 17,
|
||||||
|
MM_PKT_SEARCHFRIEND_RESP = 1000000017,
|
||||||
|
MM_PKT_SEND_APP_MSG__RESP = 1000000107,
|
||||||
|
MM_PKT_SEND_APP_MSG_REQ = 107,
|
||||||
|
MM_PKT_SENDCARD_REQ = 42,
|
||||||
|
MM_PKT_SENDCARD_RESP = 1000000042,
|
||||||
|
MM_PKT_SENDINVITEMAIL_REQ = 41,
|
||||||
|
MM_PKT_SENDMSG_RESP = 1000000002,
|
||||||
|
MM_PKT_SENDVERIFYMAIL_REQ = 43,
|
||||||
|
MM_PKT_SET_PWD_REQ = 180,
|
||||||
|
MM_PKT_SET_PWD_RESP = 1000000180,
|
||||||
|
MM_PKT_SHAKE_MUSIC_REQ = 177,
|
||||||
|
MM_PKT_SHAKE_MUSIC_RESP = 1000000177,
|
||||||
|
MM_PKT_SHAKE_TRAN_IMG_GET_REQ = 128,
|
||||||
|
MM_PKT_SHAKE_TRAN_IMG_GET_RESP = 1000000128,
|
||||||
|
MM_PKT_SHAKE_TRAN_IMG_REPORT_REQ = 127,
|
||||||
|
MM_PKT_SHAKE_TRAN_IMG_REPORT_RESP = 1000000127,
|
||||||
|
MM_PKT_SHAKE_TRAN_IMG_UNBIND_REQ = 130,
|
||||||
|
MM_PKT_SHAKE_TRAN_IMG_UNBIND_RESP = 1000000130,
|
||||||
|
MM_PKT_SHAKEGET_REQ = 57,
|
||||||
|
MM_PKT_SHAKEGET_RESP = 1000000057,
|
||||||
|
MM_PKT_SHAKEREPORT_REQ = 56,
|
||||||
|
MM_PKT_SHAKEREPORT_RESP = 1000000056,
|
||||||
|
MM_PKT_SNS_OBJECT_OP_REQ = 104,
|
||||||
|
MM_PKT_SNS_OBJECT_OP_RESP = 1000000104,
|
||||||
|
MM_PKT_SNS_POST_REQ = 97,
|
||||||
|
MM_PKT_SNS_POST_RESP = 1000000097,
|
||||||
|
MM_PKT_SNS_SYNC_REQ = 102,
|
||||||
|
MM_PKT_SNS_SYNC_RESP = 1000000102,
|
||||||
|
MM_PKT_SNS_TAG_LIST_REQ = 116,
|
||||||
|
MM_PKT_SNS_TAG_LIST_RESP = 1000000116,
|
||||||
|
MM_PKT_SNS_TAG_MEMBER_MUTIL_SET_REQ = 117,
|
||||||
|
MM_PKT_SNS_TAG_MEMBER_MUTIL_SET_RESP = 1000000117,
|
||||||
|
MM_PKT_SNS_TAG_MEMBER_OP_REQ = 115,
|
||||||
|
MM_PKT_SNS_TAG_MEMBER_OP_RESP = 1000000115,
|
||||||
|
MM_PKT_SNS_TAG_OP_REQ = 114,
|
||||||
|
MM_PKT_SNS_TAG_OP_RESP = 1000000114,
|
||||||
|
MM_PKT_SNS_TIME_LINE_REQ = 98,
|
||||||
|
MM_PKT_SNS_TIME_LINE_RESP = 1000000098,
|
||||||
|
MM_PKT_SNS_UPLOAD_REQ = 95,
|
||||||
|
MM_PKT_SNS_UPLOAD_RESP = 1000000095,
|
||||||
|
MM_PKT_SNS_USER_PAGE_REQ = 99,
|
||||||
|
MM_PKT_SNS_USER_PAGE_RESP = 1000000099,
|
||||||
|
MM_PKT_SNSCOMMENT_REQ = 100,
|
||||||
|
MM_PKT_SNSOBJECTDETAIL_REQ,
|
||||||
|
MM_PKT_SYNC_REQ = 3,
|
||||||
|
MM_PKT_SYNC_RESP = 1000000003,
|
||||||
|
MM_PKT_SYNCHECK_REQ = 13,
|
||||||
|
MM_PKT_SYNCHECK_RESP = 1000000013,
|
||||||
|
MM_PKT_TALKROOMADDMEMBER_REQ = 169,
|
||||||
|
MM_PKT_TALKROOMADDMEMBER_RESP = 1000000169,
|
||||||
|
MM_PKT_TALKROOMCREATE_REQ = 168,
|
||||||
|
MM_PKT_TALKROOMCREATE_RESP = 1000000168,
|
||||||
|
MM_PKT_TALKROOMDELMEMBER_REQ = 170,
|
||||||
|
MM_PKT_TALKROOMDELMEMBER_RESP = 1000000170,
|
||||||
|
MM_PKT_TALKROOMENTER_REQ = 147,
|
||||||
|
MM_PKT_TALKROOMENTER_RESP = 1000000147,
|
||||||
|
MM_PKT_TALKROOMEXIT_REQ = 148,
|
||||||
|
MM_PKT_TALKROOMEXIT_RESP = 1000000148,
|
||||||
|
MM_PKT_TALKROOMINVITE_REQ = 174,
|
||||||
|
MM_PKT_TALKROOMINVITE_RESP = 1000000174,
|
||||||
|
MM_PKT_TALKROOMMICACTION_REQ = 146,
|
||||||
|
MM_PKT_TALKROOMMICACTION_RESP = 1000000146,
|
||||||
|
MM_PKT_TALKROOMNOOP_REQ = 149,
|
||||||
|
MM_PKT_TALKROOMNOOP_RESP = 1000000149,
|
||||||
|
MM_PKT_TOKEN_REQ = 4,
|
||||||
|
MM_PKT_TOKEN_RESP = 1000000004,
|
||||||
|
MM_PKT_UPDATE_SAFEDEVICE_REQ = 171,
|
||||||
|
MM_PKT_UPDATE_SAFEDEVICE_RESP = 1000000171,
|
||||||
|
MM_PKT_UPLOAD_APP_ATTACH_REQ = 105,
|
||||||
|
MM_PKT_UPLOAD_APP_ATTACH_RESP = 1000000105,
|
||||||
|
MM_PKT_UPLOADMSGIMG_REQ = 9,
|
||||||
|
MM_PKT_UPLOADMSGIMG_RESP = 1000000009,
|
||||||
|
MM_PKT_UPLOADVIDEO_REQ = 39,
|
||||||
|
MM_PKT_UPLOADVOICE_REQ = 19,
|
||||||
|
MM_PKT_UPLOADVOICE_RESP = 1000000019,
|
||||||
|
MM_PKT_UPLOADWEIBOIMG_REQ = 21,
|
||||||
|
MM_PKT_UPLOADWEIBOIMG_RESP = 1000000021,
|
||||||
|
MM_PKT_VERIFY_PURCHASE_REQ = 215,
|
||||||
|
MM_PKT_VERIFY_PURCHASE_RESP = 1000000215,
|
||||||
|
MM_PKT_VERIFY_PWD_REQ = 182,
|
||||||
|
MM_PKT_VERIFY_PWD_RESP = 1000000182,
|
||||||
|
MM_PKT_VERIFYUSER = 44,
|
||||||
|
MM_PKT_VOICETRANS_NOTIFY = 241,
|
||||||
|
MM_PKT_VOIP_REQ = 120,
|
||||||
|
MM_PKT_VOIPANSWER_REQ = 65,
|
||||||
|
MM_PKT_VOIPANSWER_RESP = 1000000065,
|
||||||
|
MM_PKT_VOIPCANCELINVITE_REQ = 64,
|
||||||
|
MM_PKT_VOIPCANCELINVITE_RESP = 1000000064,
|
||||||
|
MM_PKT_VOIPHEARTBEAT_REQ = 81,
|
||||||
|
MM_PKT_VOIPHEARTBEAT_RESP = 1000000081,
|
||||||
|
MM_PKT_VOIPINVITE_REQ = 63,
|
||||||
|
MM_PKT_VOIPINVITE_RESP = 1000000063,
|
||||||
|
MM_PKT_VOIPINVITEREMIND_REQ = 125,
|
||||||
|
MM_PKT_VOIPINVITEREMIND_RESP = 1000000125,
|
||||||
|
MM_PKT_VOIPNOTIFY_REQ = 61,
|
||||||
|
MM_PKT_VOIPNOTIFY_RESP = 1000000061,
|
||||||
|
MM_PKT_VOIPSHUTDOWN_REQ = 66,
|
||||||
|
MM_PKT_VOIPSHUTDOWN_RESP = 1000000066,
|
||||||
|
MM_PKT_VOIPSYNC_REQ = 62,
|
||||||
|
MM_PKT_VOIPSYNC_RESP = 1000000062
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#define CGI_EXTDEVICELOGINCONFIRMGET "/cgi-bin/micromsg-bin/extdeviceloginconfirmget";
|
||||||
|
|
||||||
|
#define CGI_MMSNSTIMELINE "/cgi-bin/micromsg-bin/mmsnstimeline";
|
||||||
|
|
||||||
|
#define CGI_MMSNSTAGLIST "/cgi-bin/micromsg-bin/mmsnstaglist";
|
||||||
|
|
||||||
|
#define CGI_MMSNSPORT "/cgi-bin/micromsg-bin/mmsnspost";
|
||||||
|
|
||||||
|
#define CGI_MMSNSOBJECTDETAIL "/cgi-bin/micromsg-bin/mmsnsobjectdetail";
|
||||||
|
|
||||||
|
#define CGI_MMSNSOBJECTOP "/cgi-bin/micromsg-bin/mmsnsobjectop";
|
||||||
|
|
||||||
|
#define CGI_OPLOG "/cgi-bin/micromsg-bin/oplog";
|
||||||
|
|
||||||
|
#define CGI_MANUALAUTH "/cgi-bin/micromsg-bin/manualauth";
|
||||||
|
|
||||||
|
#define CGI_NEWSYNC "/cgi-bin/micromsg-bin/newsync";
|
||||||
|
|
||||||
|
#define CGI_NEWSENDMSG "/cgi-bin/micromsg-bin/newsendmsg";
|
||||||
|
|
||||||
|
#define CGI_STATUSNOTIFY "/cgi-bin/micromsg-bin/statusnotify";
|
||||||
|
|
||||||
|
#define CGI_UPLOADIMAGE "/cgi-bin/micromsg-bin/uploadmsgimg";
|
||||||
|
|
||||||
|
#define CGI_ADDFAVITEM "/cgi-bin/micromsg-bin/addfavitem";
|
||||||
|
|
||||||
|
#define CGI_FAVSYNC "/cgi-bin/micromsg-bin/favsync";
|
||||||
|
|
||||||
|
#define CGI_GETFAVINFO "/cgi-bin/micromsg-bin/getfavinfo";
|
||||||
|
|
||||||
|
#define CGI_BATCHGETFAVITEM "/cgi-bin/micromsg-bin/batchgetfavitem";
|
||||||
|
|
||||||
|
#define CGI_GETEMOTIONDESC "/cgi-bin/micromsg-bin/getemotiondesc";
|
||||||
|
|
||||||
|
#define CGI_SENDEMOJI "/cgi-bin/micromsg-bin/sendemoji";
|
||||||
|
|
||||||
|
#define CGI_GETCONTACTLABELLIST "/cgi-bin/micromsg-bin/getcontactlabellist";
|
||||||
|
|
||||||
|
#define CGI_UPLOADVOICE "/cgi-bin/micromsg-bin/uploadvoice";
|
||||||
|
|
||||||
|
#define CGI_SENDAPPMSG "/cgi-bin/micromsg-bin/sendappmsg";
|
||||||
|
|
||||||
|
#define CGI_UPLOADVIDEO "/cgi-bin/micromsg-bin/uploadvideo";
|
||||||
|
|
||||||
|
#define CGI_MMSNSUSERPAGE "/cgi-bin/micromsg-bin/mmsnsuserpage";
|
||||||
|
|
||||||
|
#define CGI_MMSNSCOMMENT "/cgi-bin/micromsg-bin/mmsnscomment";
|
||||||
|
|
||||||
|
#define CGI_GETCONTACT "/cgi-bin/micromsg-bin/getcontact";
|
||||||
|
|
||||||
|
#define CGI_GETCDNDNS "/cgi-bin/micromsg-bin/getcdndns";
|
||||||
|
|
||||||
|
#define CGI_GETPROFILE "/cgi-bin/micromsg-bin/getprofile";
|
||||||
|
|
||||||
|
#define CGI_GETMSGIMG "/cgi-bin/micromsg-bin/getmsgimg";
|
||||||
|
|
||||||
|
#define CGI_CHECKLOGINQRCODE "/cgi-bin/micromsg-bin/checkloginqrcode";
|
||||||
|
|
||||||
|
#define CGI_GETLOGINQRCODE "/cgi-bin/micromsg-bin/getloginqrcode";
|
||||||
|
|
||||||
|
#define CGI_GETOPENIMRESOURCE "/cgi-bin/micromsg-bin/getopenimresource";
|
||||||
|
|
||||||
|
#define CGI_GETCHATROOMMEMBERDETAIL "/cgi-bin/micromsg-bin/getchatroommemberdetail";
|
||||||
|
|
||||||
|
#define CGI_GETCHATROOMINFODETAIL "/cgi-bin/micromsg-bin/getchatroominfodetail";
|
||||||
|
|
||||||
|
#define CGI_DOWNLOADVOICE "/cgi-bin/micromsg-bin/downloadvoice";
|
||||||
|
|
||||||
|
#define CGI_HEARTBEAT "/cgi-bin/micromsg-bin/heartbeat";
|
||||||
|
|
||||||
|
#define CGI_GETONLINEINFO "/cgi-bin/micromsg-bin/getonlineinfo";
|
||||||
|
|
||||||
|
#define CGI_PUSHLOGINURL "/cgi-bin/micromsg-bin/pushloginurl";
|
||||||
|
|
||||||
|
#define CGI_TIMESEED "/cgi-bin/mmpay-bin/tenpay/timeseed";
|
||||||
|
|
||||||
|
#define CGI_TENPAY "/cgi-bin/micromsg-bin/tenpay";
|
||||||
|
|
||||||
|
#define CGI_F2FQRCODE "/cgi-bin/mmpay-bin/f2fqrcode";
|
||||||
|
|
||||||
|
#define CGI_TRANSFERSETF2FFEE "/cgi-bin/mmpay-bin/transfersetf2ffee";
|
||||||
|
|
||||||
|
#define CGI_BINDQUERYNEW "/cgi-bin/mmpay-bin/tenpay/bindquerynew";
|
||||||
|
|
||||||
|
#define CGI_GETBANNERINFO "/cgi-bin/mmpay-bin/tenpay/getbannerinfo";
|
||||||
|
|
||||||
|
#define CGI_GETPAYFUNCTIONLIST "/cgi-bin/micromsg-bin/getpayfunctionlist";
|
||||||
|
|
||||||
|
#define CGI_TRANSFERQUERY "/cgi-bin/mmpay-bin/transferquery";
|
||||||
|
|
||||||
|
#define CGI_GETTRANSFERWORDINH "/cgi-bin/mmpay-bin/gettransferwording";
|
||||||
|
|
||||||
|
#define CGI_TRANSFEROPERATION "/cgi-bin/mmpay-bin/transferoperation";
|
||||||
|
|
||||||
|
#define CGI_VERIFYUSER "/cgi-bin/micromsg-bin/verifyuser";
|
||||||
|
|
||||||
|
#define CGI_CREATECHATROOM "/cgi-bin/micromsg-bin/createchatroom";
|
||||||
|
|
||||||
|
#define CGI_BATCHGETHEADIMG "/cgi-bin/micromsg-bin/batchgetheadimg";
|
||||||
|
|
||||||
|
#define CGI_ADDCHATROOMMEMBER "/cgi-bin/micromsg-bin/addchatroommember";
|
||||||
|
|
||||||
|
#define CGI_DELCHATROOMMEMBER "/cgi-bin/micromsg-bin/delchatroommember";
|
||||||
|
|
||||||
|
#define CGI_GETA8KEY "/cgi-bin/micromsg-bin/geta8key";
|
||||||
|
|
||||||
|
#define CGI_ADCLICK "/cgi-bin/mmoc-bin/ad/click";
|
||||||
|
|
||||||
|
#define CGI_ADEXPOSURE "/cgi-bin/mmoc-bin/ad/exposure";
|
||||||
|
|
||||||
|
#define CGI_MMSNSSYNC "/cgi-bin/micromsg-bin/mmsnssync";
|
||||||
|
|
||||||
|
#define CGI_MASSSEND "/cgi-bin/micromsg-bin/masssend";
|
||||||
|
|
||||||
|
#define CGI_MMSNSUPLOAD "/cgi-bin/micromsg-bin/mmsnsupload";
|
||||||
|
|
||||||
|
#define CGI_INITCONTACT "/cgi-bin/micromsg-bin/initcontact";
|
||||||
|
|
||||||
|
#define CGI_RECEIVEWXHB "/cgi-bin/mmpay-bin/receivewxhb";
|
||||||
|
|
||||||
|
#define CGI_OPENWXHB "/cgi-bin/mmpay-bin/openwxhb";
|
||||||
|
|
||||||
|
#define CGI_QRYDETAILWXHB "/cgi-bin/mmpay-bin/qrydetailwxhb";
|
||||||
|
|
||||||
|
#define CGI_QRYLISTWXHB "/cgi-bin/mmpay-bin/qrylistwxhb";
|
||||||
|
|
||||||
|
#define CGI_WISHWXHB "/cgi-bin/mmpay-bin/wishwxhb";
|
||||||
|
|
||||||
|
#define CGI_NEWGETINVITEFRIEND "/cgi-bin/micromsg-bin/newgetinvitefriend";
|
||||||
|
|
||||||
|
#define CGI_UPLOADMCONTACT "/cgi-bin/micromsg-bin/uploadmcontact";
|
||||||
|
|
||||||
|
#define CGI_LBSFIND "/cgi-bin/micromsg-bin/lbsfind";
|
||||||
|
|
||||||
|
#define CGI_SETCHATROOMANNOUNCEMENT "/cgi-bin/micromsg-bin/setchatroomannouncement";
|
||||||
|
|
||||||
|
#define CGI_GETQRCODE ="/cgi-bin/micromsg-bin/getqrcode";
|
||||||
|
|
||||||
|
#define CGI_SEARCHCONTACT "/cgi-bin/micromsg-bin/searchcontact";
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
19
MMPro/micromsg/CMakeLists.txt
Normal file
19
MMPro/micromsg/CMakeLists.txt
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
|
||||||
|
cmake_minimum_required (VERSION 3.8)
|
||||||
|
|
||||||
|
# project(micromsg)
|
||||||
|
|
||||||
|
add_compile_options(/MP)
|
||||||
|
|
||||||
|
aux_source_directory(./src micromsg)
|
||||||
|
|
||||||
|
add_library(micromsg STATIC ${micromsg} )
|
||||||
|
|
||||||
|
message(STATUS "include directory: ${include_directories}")
|
||||||
|
|
||||||
|
target_include_directories(micromsg PUBLIC protobuf)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
8
MMPro/micromsg/proto/APPItem.proto
Normal file
8
MMPro/micromsg/proto/APPItem.proto
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message APPItem {
|
||||||
|
optional string _UserName = 1;
|
||||||
|
}
|
13
MMPro/micromsg/proto/AcceptCardItemRequest.proto
Normal file
13
MMPro/micromsg/proto/AcceptCardItemRequest.proto
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
|
||||||
|
message AcceptCardItemRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
optional string _FromUsername = 2;
|
||||||
|
required uint32 _FromScene = 3;
|
||||||
|
required string _CardId = 4;
|
||||||
|
optional string _CardExt = 5;
|
||||||
|
}
|
12
MMPro/micromsg/proto/AcceptCardItemResponse.proto
Normal file
12
MMPro/micromsg/proto/AcceptCardItemResponse.proto
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message AcceptCardItemResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
optional string _JsonRet = 2;
|
||||||
|
optional int32 _RetCode = 3;
|
||||||
|
optional string _RetMsg = 4;
|
||||||
|
}
|
12
MMPro/micromsg/proto/AcceptCardListFromAppRequest.proto
Normal file
12
MMPro/micromsg/proto/AcceptCardListFromAppRequest.proto
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
import "CardListItem.proto";
|
||||||
|
|
||||||
|
message AcceptCardListFromAppRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
repeated CardListItem _CardList = 2;
|
||||||
|
optional uint32 _FromScene = 3;
|
||||||
|
}
|
12
MMPro/micromsg/proto/AcceptCardListFromAppResponse.proto
Normal file
12
MMPro/micromsg/proto/AcceptCardListFromAppResponse.proto
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message AcceptCardListFromAppResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
optional string _JsonRet = 2;
|
||||||
|
optional int32 _RetCode = 3;
|
||||||
|
optional string _RetMsg = 4;
|
||||||
|
}
|
22
MMPro/micromsg/proto/AcctSectResp.proto
Normal file
22
MMPro/micromsg/proto/AcctSectResp.proto
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message AcctSectResp {
|
||||||
|
optional string _UserName = 1;
|
||||||
|
optional string _NickName = 2;
|
||||||
|
required uint32 _BindUin = 3;
|
||||||
|
optional string _BindEmail = 4;
|
||||||
|
optional string _BindMobile = 5;
|
||||||
|
optional string _Alias = 6;
|
||||||
|
required uint32 _Status = 8;
|
||||||
|
optional uint32 _PluginFlag = 9;
|
||||||
|
optional uint32 _RegType = 10;
|
||||||
|
optional string _DeviceInfoXml = 11;
|
||||||
|
optional uint32 _SafeDevice = 12;
|
||||||
|
optional string _OfficialUserName = 13;
|
||||||
|
optional string _OfficialNickName = 14;
|
||||||
|
optional uint32 _PushMailStatus = 15;
|
||||||
|
optional string _FSURL = 16;
|
||||||
|
}
|
12
MMPro/micromsg/proto/ActionAttr.proto
Normal file
12
MMPro/micromsg/proto/ActionAttr.proto
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message ActionAttr {
|
||||||
|
optional string _Name = 1;
|
||||||
|
optional string _Tips = 2;
|
||||||
|
optional uint32 _Type = 3;
|
||||||
|
optional string _Content = 4;
|
||||||
|
optional string _IconUrl = 5;
|
||||||
|
}
|
19
MMPro/micromsg/proto/AdAppList.proto
Normal file
19
MMPro/micromsg/proto/AdAppList.proto
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "YYBStruct.proto";
|
||||||
|
|
||||||
|
message AdAppList {
|
||||||
|
optional string _AppID = 1;
|
||||||
|
optional string _AppCoverUrl = 2;
|
||||||
|
optional string _AppDownloadUrl = 3;
|
||||||
|
optional string _AndroidApkMd5 = 4;
|
||||||
|
optional string _AppName = 5;
|
||||||
|
optional string _AppIconUrl = 6;
|
||||||
|
optional string _AppSnsDesc = 7;
|
||||||
|
optional string _AndroidPackageName = 8;
|
||||||
|
optional string _GooglePlayDownloadUrl = 9;
|
||||||
|
optional YYBStruct _SYYB = 10;
|
||||||
|
optional string _ExtAsXML = 11;
|
||||||
|
}
|
13
MMPro/micromsg/proto/AddChatRoomDonateRecordReq.proto
Normal file
13
MMPro/micromsg/proto/AddChatRoomDonateRecordReq.proto
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
|
||||||
|
message AddChatRoomDonateRecordReq {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
optional string _ChatRoomName = 2;
|
||||||
|
optional string _TransID = 3;
|
||||||
|
optional string _Title = 4;
|
||||||
|
optional string _WebUrl = 5;
|
||||||
|
}
|
10
MMPro/micromsg/proto/AddChatRoomDonateRecordResp.proto
Normal file
10
MMPro/micromsg/proto/AddChatRoomDonateRecordResp.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message AddChatRoomDonateRecordResp {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
required uint32 _MaxCount = 2;
|
||||||
|
}
|
14
MMPro/micromsg/proto/AddChatRoomMemberRequest.proto
Normal file
14
MMPro/micromsg/proto/AddChatRoomMemberRequest.proto
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
import "MemberReq.proto";
|
||||||
|
import "SKBuiltinString_t.proto";
|
||||||
|
|
||||||
|
message AddChatRoomMemberRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
required uint32 _MemberCount = 2;
|
||||||
|
repeated MemberReq _MemberList = 3;
|
||||||
|
required SKBuiltinString_t _ChatRoomName = 4;
|
||||||
|
}
|
12
MMPro/micromsg/proto/AddChatRoomMemberResponse.proto
Normal file
12
MMPro/micromsg/proto/AddChatRoomMemberResponse.proto
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
import "MemberResp.proto";
|
||||||
|
|
||||||
|
message AddChatRoomMemberResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
required uint32 _MemberCount = 2;
|
||||||
|
repeated MemberResp _MemberList = 3;
|
||||||
|
}
|
12
MMPro/micromsg/proto/AddContactLabelRequest.proto
Normal file
12
MMPro/micromsg/proto/AddContactLabelRequest.proto
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
import "LabelPair.proto";
|
||||||
|
|
||||||
|
message AddContactLabelRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
required uint32 _LabelCount = 2;
|
||||||
|
repeated LabelPair _LabelPairList = 3;
|
||||||
|
}
|
12
MMPro/micromsg/proto/AddContactLabelResponse.proto
Normal file
12
MMPro/micromsg/proto/AddContactLabelResponse.proto
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
import "LabelPair.proto";
|
||||||
|
|
||||||
|
message AddContactLabelResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
required uint32 _LabelCount = 2;
|
||||||
|
repeated LabelPair _LabelPairList = 3;
|
||||||
|
}
|
12
MMPro/micromsg/proto/AddFavItem.proto
Normal file
12
MMPro/micromsg/proto/AddFavItem.proto
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message AddFavItem {
|
||||||
|
required int32 _FavId = 1;
|
||||||
|
required int32 _Type = 2;
|
||||||
|
required uint32 _Flag = 3;
|
||||||
|
required uint32 _UpdateTime = 4;
|
||||||
|
required uint32 _UpdateSeq = 5;
|
||||||
|
}
|
14
MMPro/micromsg/proto/AddFavItemRequest.proto
Normal file
14
MMPro/micromsg/proto/AddFavItemRequest.proto
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
|
||||||
|
message AddFavItemRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
optional string _ClientId = 2;
|
||||||
|
required uint32 _Type = 3;
|
||||||
|
required uint32 _SourceType = 4;
|
||||||
|
optional string _SourceId = 5;
|
||||||
|
optional string _Object = 6;
|
||||||
|
}
|
12
MMPro/micromsg/proto/AddFavItemResponse.proto
Normal file
12
MMPro/micromsg/proto/AddFavItemResponse.proto
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message AddFavItemResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
required uint32 _FavId = 2;
|
||||||
|
required uint32 _UpdateSeq = 3;
|
||||||
|
optional uint64 _UsedSize = 4;
|
||||||
|
}
|
15
MMPro/micromsg/proto/AddGameMsg.proto
Normal file
15
MMPro/micromsg/proto/AddGameMsg.proto
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message AddGameMsg {
|
||||||
|
required int32 _MsgId = 1;
|
||||||
|
optional string _FromUserName = 2;
|
||||||
|
optional string _ToUserName = 3;
|
||||||
|
required int32 _Type = 4;
|
||||||
|
required uint32 _Flag = 5;
|
||||||
|
required uint32 _Status = 6;
|
||||||
|
required uint32 _UpdateTime = 7;
|
||||||
|
required uint32 _UpdateSeq = 8;
|
||||||
|
}
|
21
MMPro/micromsg/proto/AddMsg.proto
Normal file
21
MMPro/micromsg/proto/AddMsg.proto
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "SKBuiltinString_t.proto";
|
||||||
|
import "SKBuiltinBuffer_t.proto";
|
||||||
|
|
||||||
|
message AddMsg {
|
||||||
|
required int32 _MsgId = 1;
|
||||||
|
required SKBuiltinString_t _FromUserName = 2;
|
||||||
|
required SKBuiltinString_t _ToUserName = 3;
|
||||||
|
required int32 _MsgType = 4;
|
||||||
|
required SKBuiltinString_t _Content = 5;
|
||||||
|
required uint32 _Status = 6;
|
||||||
|
required uint32 _ImgStatus = 7;
|
||||||
|
required SKBuiltinBuffer_t _ImgBuf = 8;
|
||||||
|
required uint32 _CreateTime = 9;
|
||||||
|
optional string _MsgSource = 10;
|
||||||
|
optional string _PushContent = 11;
|
||||||
|
optional int64 _NewMsgId = 12;
|
||||||
|
}
|
15
MMPro/micromsg/proto/AddRemindRequest.proto
Normal file
15
MMPro/micromsg/proto/AddRemindRequest.proto
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
import "RemindMember.proto";
|
||||||
|
|
||||||
|
message AddRemindRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
optional string _ClientID = 2;
|
||||||
|
required uint64 _RemindTime = 3;
|
||||||
|
required uint32 _ToUserCount = 4;
|
||||||
|
repeated RemindMember _ToUserList = 5;
|
||||||
|
optional string _Content = 6;
|
||||||
|
}
|
9
MMPro/micromsg/proto/AddRemindResponse.proto
Normal file
9
MMPro/micromsg/proto/AddRemindResponse.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message AddRemindResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
}
|
15
MMPro/micromsg/proto/AddTalkRoomMemberRequest.proto
Normal file
15
MMPro/micromsg/proto/AddTalkRoomMemberRequest.proto
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
import "MemberReq.proto";
|
||||||
|
import "SKBuiltinString_t.proto";
|
||||||
|
|
||||||
|
message AddTalkRoomMemberRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
required uint32 _MemberCount = 2;
|
||||||
|
repeated MemberReq _MemberList = 3;
|
||||||
|
required SKBuiltinString_t _TalkRoomName = 4;
|
||||||
|
optional uint32 _Scene = 5;
|
||||||
|
}
|
12
MMPro/micromsg/proto/AddTalkRoomMemberResponse.proto
Normal file
12
MMPro/micromsg/proto/AddTalkRoomMemberResponse.proto
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
import "MemberResp.proto";
|
||||||
|
|
||||||
|
message AddTalkRoomMemberResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
required uint32 _MemberCount = 2;
|
||||||
|
repeated MemberResp _MemberList = 3;
|
||||||
|
}
|
9
MMPro/micromsg/proto/AdditionalContactList.proto
Normal file
9
MMPro/micromsg/proto/AdditionalContactList.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "LinkedinContactItem.proto";
|
||||||
|
|
||||||
|
message AdditionalContactList {
|
||||||
|
optional LinkedinContactItem _LinkedinContactItem = 1;
|
||||||
|
}
|
14
MMPro/micromsg/proto/Address.proto
Normal file
14
MMPro/micromsg/proto/Address.proto
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message Address {
|
||||||
|
optional string _Country = 1;
|
||||||
|
optional string _Province = 2;
|
||||||
|
optional string _City = 3;
|
||||||
|
optional string _Detail = 4;
|
||||||
|
optional string _UserName = 5;
|
||||||
|
optional string _Tel = 6;
|
||||||
|
optional string _ZipCode = 7;
|
||||||
|
}
|
11
MMPro/micromsg/proto/AdvertiseObject.proto
Normal file
11
MMPro/micromsg/proto/AdvertiseObject.proto
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "SnsADObject.proto";
|
||||||
|
import "SKBuiltinString_t.proto";
|
||||||
|
|
||||||
|
message AdvertiseObject {
|
||||||
|
required SnsADObject _SnsADObject = 1;
|
||||||
|
optional SKBuiltinString_t _ADInfo = 2;
|
||||||
|
}
|
8
MMPro/micromsg/proto/AlbumLbsContactInfo.proto
Normal file
8
MMPro/micromsg/proto/AlbumLbsContactInfo.proto
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message AlbumLbsContactInfo {
|
||||||
|
optional string _UserName = 1;
|
||||||
|
}
|
17
MMPro/micromsg/proto/AlbumLbsRequest.proto
Normal file
17
MMPro/micromsg/proto/AlbumLbsRequest.proto
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
|
||||||
|
message AlbumLbsRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
required uint32 _OpCode = 2;
|
||||||
|
required float _Longitude = 3;
|
||||||
|
required float _Latitude = 4;
|
||||||
|
required int32 _Precision = 5;
|
||||||
|
optional string _MacAddr = 6;
|
||||||
|
optional string _CellId = 7;
|
||||||
|
required int32 _GPSSource = 8;
|
||||||
|
required uint32 _SBTime = 9;
|
||||||
|
}
|
12
MMPro/micromsg/proto/AlbumLbsResponse.proto
Normal file
12
MMPro/micromsg/proto/AlbumLbsResponse.proto
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
import "AlbumLbsContactInfo.proto";
|
||||||
|
|
||||||
|
message AlbumLbsResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
required uint32 _ContactCount = 2;
|
||||||
|
repeated AlbumLbsContactInfo _ContactList = 3;
|
||||||
|
}
|
10
MMPro/micromsg/proto/AndroidGCMRegRequest.proto
Normal file
10
MMPro/micromsg/proto/AndroidGCMRegRequest.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
|
||||||
|
message AndroidGCMRegRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
optional string _Token = 2;
|
||||||
|
}
|
9
MMPro/micromsg/proto/AndroidGCMRegResponse.proto
Normal file
9
MMPro/micromsg/proto/AndroidGCMRegResponse.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message AndroidGCMRegResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
}
|
10
MMPro/micromsg/proto/AndroidGCMUnRegRequest.proto
Normal file
10
MMPro/micromsg/proto/AndroidGCMUnRegRequest.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
|
||||||
|
message AndroidGCMUnRegRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
optional string _Token = 2;
|
||||||
|
}
|
9
MMPro/micromsg/proto/AndroidGCMUnRegResponse.proto
Normal file
9
MMPro/micromsg/proto/AndroidGCMUnRegResponse.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message AndroidGCMUnRegResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
}
|
12
MMPro/micromsg/proto/AppCenterRequest.proto
Normal file
12
MMPro/micromsg/proto/AppCenterRequest.proto
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
import "SKBuiltinBuffer_t.proto";
|
||||||
|
|
||||||
|
message AppCenterRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
required uint32 _Type = 2;
|
||||||
|
required SKBuiltinBuffer_t _ReqBuf = 3;
|
||||||
|
}
|
11
MMPro/micromsg/proto/AppCenterResponse.proto
Normal file
11
MMPro/micromsg/proto/AppCenterResponse.proto
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
import "SKBuiltinBuffer_t.proto";
|
||||||
|
|
||||||
|
message AppCenterResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
required SKBuiltinBuffer_t _RespBuf = 2;
|
||||||
|
}
|
10
MMPro/micromsg/proto/AppCommentRequest.proto
Normal file
10
MMPro/micromsg/proto/AppCommentRequest.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
|
||||||
|
message AppCommentRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
required uint32 _Status = 2;
|
||||||
|
}
|
9
MMPro/micromsg/proto/AppCommentResponse.proto
Normal file
9
MMPro/micromsg/proto/AppCommentResponse.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message AppCommentResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
}
|
23
MMPro/micromsg/proto/AppMsg.proto
Normal file
23
MMPro/micromsg/proto/AppMsg.proto
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "SKBuiltinBuffer_t.proto";
|
||||||
|
|
||||||
|
message AppMsg {
|
||||||
|
optional string _FromUserName = 1;
|
||||||
|
optional string _AppId = 2;
|
||||||
|
required uint32 _SdkVersion = 3;
|
||||||
|
optional string _ToUserName = 4;
|
||||||
|
required uint32 _Type = 5;
|
||||||
|
optional string _Content = 6;
|
||||||
|
required uint32 _CreateTime = 7;
|
||||||
|
optional string _ClientMsgId = 8;
|
||||||
|
optional SKBuiltinBuffer_t _Thumb = 9;
|
||||||
|
optional int32 _Source = 10;
|
||||||
|
optional int32 _RemindId = 11;
|
||||||
|
optional string _MsgSource = 12;
|
||||||
|
optional string _ShareUrlOriginal = 13;
|
||||||
|
optional string _ShareUrlOpen = 14;
|
||||||
|
optional string _JsAppId = 15;
|
||||||
|
}
|
9
MMPro/micromsg/proto/AppPersonalInfo.proto
Normal file
9
MMPro/micromsg/proto/AppPersonalInfo.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message AppPersonalInfo {
|
||||||
|
optional string _AppID = 1;
|
||||||
|
optional string _PersonalSettingXml = 2;
|
||||||
|
}
|
10
MMPro/micromsg/proto/AppSetting.proto
Normal file
10
MMPro/micromsg/proto/AppSetting.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message AppSetting {
|
||||||
|
optional string _AppID = 1;
|
||||||
|
required uint32 _AppFlag = 2;
|
||||||
|
optional string _OpenID = 3;
|
||||||
|
}
|
8
MMPro/micromsg/proto/AppSettingReq.proto
Normal file
8
MMPro/micromsg/proto/AppSettingReq.proto
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message AppSettingReq {
|
||||||
|
optional string _AppID = 1;
|
||||||
|
}
|
14
MMPro/micromsg/proto/ApplyResetPawRequest.proto
Normal file
14
MMPro/micromsg/proto/ApplyResetPawRequest.proto
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
import "SKBuiltinBuffer_t.proto";
|
||||||
|
|
||||||
|
message ApplyResetPawRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
required int32 _Type = 2;
|
||||||
|
optional string _ResetInfo = 3;
|
||||||
|
optional uint32 _GetMethod = 4;
|
||||||
|
optional SKBuiltinBuffer_t _RandomEncryKey = 5;
|
||||||
|
}
|
9
MMPro/micromsg/proto/ApplyResetPawResponse.proto
Normal file
9
MMPro/micromsg/proto/ApplyResetPawResponse.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message ApplyResetPawResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
}
|
10
MMPro/micromsg/proto/AshaRegRequest.proto
Normal file
10
MMPro/micromsg/proto/AshaRegRequest.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
|
||||||
|
message AshaRegRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
optional string _Nid = 2;
|
||||||
|
}
|
9
MMPro/micromsg/proto/AshaRegResponse.proto
Normal file
9
MMPro/micromsg/proto/AshaRegResponse.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message AshaRegResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
}
|
10
MMPro/micromsg/proto/AshaUnRegRequest.proto
Normal file
10
MMPro/micromsg/proto/AshaUnRegRequest.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
|
||||||
|
message AshaUnRegRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
optional string _Nid = 2;
|
||||||
|
}
|
9
MMPro/micromsg/proto/AshaUnRegResponse.proto
Normal file
9
MMPro/micromsg/proto/AshaUnRegResponse.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message AshaUnRegResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
}
|
10
MMPro/micromsg/proto/AskForRewardRequest.proto
Normal file
10
MMPro/micromsg/proto/AskForRewardRequest.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "EmotionPrice.proto";
|
||||||
|
|
||||||
|
message AskForRewardRequest {
|
||||||
|
required string _ProductID = 1;
|
||||||
|
required EmotionPrice _Price = 2;
|
||||||
|
}
|
11
MMPro/micromsg/proto/AskForRewardResponse.proto
Normal file
11
MMPro/micromsg/proto/AskForRewardResponse.proto
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message AskForRewardResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
required string _ReqKey = 2;
|
||||||
|
required string _AppID = 3;
|
||||||
|
}
|
15
MMPro/micromsg/proto/AuthAppBaseInfo.proto
Normal file
15
MMPro/micromsg/proto/AuthAppBaseInfo.proto
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message AuthAppBaseInfo {
|
||||||
|
optional string _AppID = 1;
|
||||||
|
optional string _AppType = 2;
|
||||||
|
optional string _IconUrl = 3;
|
||||||
|
optional string _AppName = 4;
|
||||||
|
required uint32 _AppFlag = 5;
|
||||||
|
optional string _ExternInfo = 6;
|
||||||
|
optional string _AuthInfo = 7;
|
||||||
|
optional string _DevInfo = 8;
|
||||||
|
}
|
31
MMPro/micromsg/proto/AuthSectResp.proto
Normal file
31
MMPro/micromsg/proto/AuthSectResp.proto
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "ECDHKey.proto";
|
||||||
|
import "SKBuiltinBuffer_t.proto";
|
||||||
|
import "WTLoginImgRespInfo.proto";
|
||||||
|
import "WxVerifyCodeRespInfo.proto";
|
||||||
|
import "ShowStyleKey.proto";
|
||||||
|
|
||||||
|
message AuthSectResp {
|
||||||
|
required uint32 _Uin = 1;
|
||||||
|
required ECDHKey _SvrPubECDHKey = 2;
|
||||||
|
required SKBuiltinBuffer_t _SessionKey = 3;
|
||||||
|
required SKBuiltinBuffer_t _AutoAuthKey = 4;
|
||||||
|
required uint32 _WTLoginRspBuffFlag = 5;
|
||||||
|
optional SKBuiltinBuffer_t _WTLoginRspBuff = 6;
|
||||||
|
optional WTLoginImgRespInfo _WTLoginImgRespInfo = 7;
|
||||||
|
optional WxVerifyCodeRespInfo _WxVerifyCodeRespInfo = 8;
|
||||||
|
optional SKBuiltinBuffer_t _CliDBEncryptKey = 9;
|
||||||
|
optional SKBuiltinBuffer_t _CliDBEncryptInfo = 10;
|
||||||
|
optional string _AuthKey = 11;
|
||||||
|
optional SKBuiltinBuffer_t _A2Key = 12;
|
||||||
|
optional string _ApplyBetaUrl = 14;
|
||||||
|
optional ShowStyleKey _ShowStyle = 15;
|
||||||
|
optional string _AuthTicket = 16;
|
||||||
|
optional uint32 _NewVersion = 17;
|
||||||
|
optional uint32 _UpdateFlag = 18;
|
||||||
|
optional uint32 _AuthResultFlag = 19;
|
||||||
|
optional string _FSURL = 20;
|
||||||
|
}
|
22
MMPro/micromsg/proto/AutoAuthAesReqData.proto
Normal file
22
MMPro/micromsg/proto/AutoAuthAesReqData.proto
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
import "BaseAuthReqInfo.proto";
|
||||||
|
import "SKBuiltinBuffer_t.proto";
|
||||||
|
|
||||||
|
message AutoAuthAesReqData {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
optional BaseAuthReqInfo _BaseReqInfo = 2;
|
||||||
|
required SKBuiltinBuffer_t _AutoAuthKey = 3;
|
||||||
|
optional string _IMEI = 4;
|
||||||
|
optional string _SoftType = 5;
|
||||||
|
required uint32 _BuiltinIPSeq = 6;
|
||||||
|
optional string _ClientSeqID = 7;
|
||||||
|
optional string _Signature = 8;
|
||||||
|
optional string _DeviceName = 9;
|
||||||
|
optional string _DeviceType = 10;
|
||||||
|
optional string _Language = 11;
|
||||||
|
optional string _TimeZone = 12;
|
||||||
|
}
|
10
MMPro/micromsg/proto/AutoAuthKey.proto
Normal file
10
MMPro/micromsg/proto/AutoAuthKey.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "SKBuiltinBuffer_t.proto";
|
||||||
|
|
||||||
|
message AutoAuthKey {
|
||||||
|
required SKBuiltinBuffer_t _EncryptKey = 1;
|
||||||
|
required SKBuiltinBuffer_t _Key = 2;
|
||||||
|
}
|
11
MMPro/micromsg/proto/AutoAuthRequest.proto
Normal file
11
MMPro/micromsg/proto/AutoAuthRequest.proto
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "AutoAuthRsaReqData.proto";
|
||||||
|
import "AutoAuthAesReqData.proto";
|
||||||
|
|
||||||
|
message AutoAuthRequest {
|
||||||
|
required AutoAuthRsaReqData _RsaReqData = 1;
|
||||||
|
required AutoAuthAesReqData _AesReqData = 2;
|
||||||
|
}
|
11
MMPro/micromsg/proto/AutoAuthRsaReqData.proto
Normal file
11
MMPro/micromsg/proto/AutoAuthRsaReqData.proto
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "SKBuiltinBuffer_t.proto";
|
||||||
|
import "ECDHKey.proto";
|
||||||
|
|
||||||
|
message AutoAuthRsaReqData {
|
||||||
|
required SKBuiltinBuffer_t _AesEncryptKey = 2;
|
||||||
|
optional ECDHKey _CliPubECDHKey = 3;
|
||||||
|
}
|
16
MMPro/micromsg/proto/BBMContactItem.proto
Normal file
16
MMPro/micromsg/proto/BBMContactItem.proto
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BBMContactItem {
|
||||||
|
optional string _BBPPID = 1;
|
||||||
|
optional string _UserName = 2;
|
||||||
|
optional string _BigHeadUrl = 3;
|
||||||
|
optional string _SmallHeadUrl = 4;
|
||||||
|
optional string _BBPIN = 5;
|
||||||
|
optional string _BBMNickName = 6;
|
||||||
|
required int32 _Ret = 7;
|
||||||
|
optional string _NickName = 8;
|
||||||
|
optional string _AntispamTicket = 9;
|
||||||
|
}
|
10
MMPro/micromsg/proto/BBMContactUploadItem.proto
Normal file
10
MMPro/micromsg/proto/BBMContactUploadItem.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BBMContactUploadItem {
|
||||||
|
optional string _BBPPID = 1;
|
||||||
|
optional string _BBPIN = 2;
|
||||||
|
optional string _BBMNickName = 3;
|
||||||
|
}
|
9
MMPro/micromsg/proto/BackupCancelRequest.proto
Normal file
9
MMPro/micromsg/proto/BackupCancelRequest.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BackupCancelRequest {
|
||||||
|
required string _ID = 1;
|
||||||
|
optional uint32 _Reason = 2;
|
||||||
|
}
|
9
MMPro/micromsg/proto/BackupCommandRequest.proto
Normal file
9
MMPro/micromsg/proto/BackupCommandRequest.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BackupCommandRequest {
|
||||||
|
required int32 _Command = 1;
|
||||||
|
optional bytes _Data = 2;
|
||||||
|
}
|
9
MMPro/micromsg/proto/BackupCommandResponse.proto
Normal file
9
MMPro/micromsg/proto/BackupCommandResponse.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BackupCommandResponse {
|
||||||
|
required int32 _Command = 1;
|
||||||
|
optional bytes _Data = 2;
|
||||||
|
}
|
9
MMPro/micromsg/proto/BackupEmojiOperateRequest.proto
Normal file
9
MMPro/micromsg/proto/BackupEmojiOperateRequest.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BackupEmojiOperateRequest {
|
||||||
|
repeated string _Md5List = 1;
|
||||||
|
required uint32 _Opcode = 2;
|
||||||
|
}
|
10
MMPro/micromsg/proto/BackupEmojiOperateResponse.proto
Normal file
10
MMPro/micromsg/proto/BackupEmojiOperateResponse.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message BackupEmojiOperateResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
repeated string _NeedUploadMd5List = 2;
|
||||||
|
}
|
19
MMPro/micromsg/proto/BackupFinishRequest.proto
Normal file
19
MMPro/micromsg/proto/BackupFinishRequest.proto
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BackupReportList.proto";
|
||||||
|
|
||||||
|
message BackupFinishRequest {
|
||||||
|
required string _ID = 1;
|
||||||
|
optional BackupReportList _Data = 2;
|
||||||
|
optional uint32 _ServerSessionCount = 3;
|
||||||
|
optional uint32 _ServerMessageCount = 4;
|
||||||
|
optional uint32 _ServerFileCount = 5;
|
||||||
|
optional uint32 _CalculateSize = 6;
|
||||||
|
optional uint32 _ServerDataPushSize = 7;
|
||||||
|
optional uint32 _ServerReadDBTotalTime = 8;
|
||||||
|
optional uint32 _ServerReadFileTotalTime = 9;
|
||||||
|
optional uint32 _ServerCostTotalTime = 10;
|
||||||
|
optional uint32 _ServerVersion = 11;
|
||||||
|
}
|
8
MMPro/micromsg/proto/BackupHeartBeatRequest.proto
Normal file
8
MMPro/micromsg/proto/BackupHeartBeatRequest.proto
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BackupHeartBeatRequest {
|
||||||
|
required uint64 _Ack = 1;
|
||||||
|
}
|
8
MMPro/micromsg/proto/BackupHeartBeatResponse.proto
Normal file
8
MMPro/micromsg/proto/BackupHeartBeatResponse.proto
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BackupHeartBeatResponse {
|
||||||
|
required uint64 _Ack = 1;
|
||||||
|
}
|
9
MMPro/micromsg/proto/BackupReportItem.proto
Normal file
9
MMPro/micromsg/proto/BackupReportItem.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BackupReportItem {
|
||||||
|
required string _BakChatName = 1;
|
||||||
|
required uint32 _MsgCount = 2;
|
||||||
|
}
|
10
MMPro/micromsg/proto/BackupReportList.proto
Normal file
10
MMPro/micromsg/proto/BackupReportList.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BackupReportItem.proto";
|
||||||
|
|
||||||
|
message BackupReportList {
|
||||||
|
required uint32 _Count = 1;
|
||||||
|
repeated BackupReportItem _List = 2;
|
||||||
|
}
|
9
MMPro/micromsg/proto/BackupRequestSession.proto
Normal file
9
MMPro/micromsg/proto/BackupRequestSession.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BackupRequestSession {
|
||||||
|
repeated string _SessionName = 1;
|
||||||
|
repeated int64 _TimeInterval = 2;
|
||||||
|
}
|
9
MMPro/micromsg/proto/BackupRequestSessionResponse.proto
Normal file
9
MMPro/micromsg/proto/BackupRequestSessionResponse.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BackupRequestSessionResponse {
|
||||||
|
repeated string _SessionName = 1;
|
||||||
|
repeated int64 _TimeInterval = 2;
|
||||||
|
}
|
14
MMPro/micromsg/proto/BackupStartGeneralInfo.proto
Normal file
14
MMPro/micromsg/proto/BackupStartGeneralInfo.proto
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BackupStartGeneralInfo {
|
||||||
|
required string _DeviceID = 1;
|
||||||
|
required string _DeviceName = 2;
|
||||||
|
required string _Model = 3;
|
||||||
|
required string _SystemName = 4;
|
||||||
|
required string _SystemVersion = 5;
|
||||||
|
required uint32 _WechatVersion = 6;
|
||||||
|
required uint64 _DeviceFreeSpace = 7;
|
||||||
|
}
|
15
MMPro/micromsg/proto/BackupStartRequest.proto
Normal file
15
MMPro/micromsg/proto/BackupStartRequest.proto
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BackupStartGeneralInfo.proto";
|
||||||
|
|
||||||
|
message BackupStartRequest {
|
||||||
|
required string _ID = 1;
|
||||||
|
optional uint64 _BigDataSize = 2;
|
||||||
|
optional uint64 _SessionCount = 3;
|
||||||
|
optional uint64 _MsgCount = 4;
|
||||||
|
optional BackupStartGeneralInfo _GeneralInfo = 5;
|
||||||
|
optional uint64 _DataSize = 6;
|
||||||
|
optional int32 _TransferType = 7;
|
||||||
|
}
|
15
MMPro/micromsg/proto/BackupStartResponse.proto
Normal file
15
MMPro/micromsg/proto/BackupStartResponse.proto
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BackupStartGeneralInfo.proto";
|
||||||
|
|
||||||
|
message BackupStartResponse {
|
||||||
|
required string _ID = 1;
|
||||||
|
required uint64 _TotalCount = 2;
|
||||||
|
required uint64 _TotalSize = 3;
|
||||||
|
required int32 _Status = 4;
|
||||||
|
optional uint32 _NetworkState = 5;
|
||||||
|
optional uint64 _BigDataSize = 6;
|
||||||
|
optional BackupStartGeneralInfo _GeneralInfo = 7;
|
||||||
|
}
|
18
MMPro/micromsg/proto/BakChatCreateQRCodeRequest.proto
Normal file
18
MMPro/micromsg/proto/BakChatCreateQRCodeRequest.proto
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
import "ConnectInfoAddr.proto";
|
||||||
|
|
||||||
|
message BakChatCreateQRCodeRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
required uint32 _AddrCount = 2;
|
||||||
|
repeated ConnectInfoAddr _AddrList = 3;
|
||||||
|
optional string _PCName = 4;
|
||||||
|
optional string _PCAcctName = 5;
|
||||||
|
required uint32 _Scene = 6;
|
||||||
|
optional uint64 _DataSize = 7;
|
||||||
|
optional string _WifiName = 8;
|
||||||
|
optional int32 _Op = 9;
|
||||||
|
}
|
17
MMPro/micromsg/proto/BakChatCreateQRcodeResponse.proto
Normal file
17
MMPro/micromsg/proto/BakChatCreateQRcodeResponse.proto
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "SKBuiltinBuffer_t.proto";
|
||||||
|
|
||||||
|
message BakChatCreateQRcodeResponse {
|
||||||
|
required uint32 _Ret = 1;
|
||||||
|
required SKBuiltinBuffer_t _QRCodeBuffer = 2;
|
||||||
|
optional string _QRCodeUrl = 3;
|
||||||
|
required SKBuiltinBuffer_t _Key = 4;
|
||||||
|
optional string _Hello = 5;
|
||||||
|
optional string _OK = 6;
|
||||||
|
required uint32 _EncryFlag = 7;
|
||||||
|
optional string _ID = 8;
|
||||||
|
optional string _Tickit = 9;
|
||||||
|
}
|
17
MMPro/micromsg/proto/BaseAuthReqInfo.proto
Normal file
17
MMPro/micromsg/proto/BaseAuthReqInfo.proto
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "SKBuiltinBuffer_t.proto";
|
||||||
|
import "WTLoginImgReqInfo.proto";
|
||||||
|
import "WxVerifyCodeReqInfo.proto";
|
||||||
|
|
||||||
|
message BaseAuthReqInfo {
|
||||||
|
optional SKBuiltinBuffer_t _WTLoginReqBuff = 1;
|
||||||
|
optional WTLoginImgReqInfo _WTLoginImgReqInfo = 2;
|
||||||
|
optional WxVerifyCodeReqInfo _WxVerifyCodeReqInfo = 3;
|
||||||
|
optional SKBuiltinBuffer_t _CliDBEncryptKey = 4;
|
||||||
|
optional SKBuiltinBuffer_t _CliDBEncryptInfo = 5;
|
||||||
|
optional uint32 _AuthReqFlag = 6;
|
||||||
|
optional string _AuthTicket = 7;
|
||||||
|
}
|
13
MMPro/micromsg/proto/BaseRequest.proto
Normal file
13
MMPro/micromsg/proto/BaseRequest.proto
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BaseRequest {
|
||||||
|
required bytes _SessionKey = 1;
|
||||||
|
required uint32 _Uin = 2;
|
||||||
|
required bytes _DeviceID = 3;
|
||||||
|
required int32 _ClientVersion = 4;
|
||||||
|
required bytes _DeviceType = 5;
|
||||||
|
optional uint32 _Scene = 6;
|
||||||
|
}
|
10
MMPro/micromsg/proto/BaseResponse.proto
Normal file
10
MMPro/micromsg/proto/BaseResponse.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "SKBuiltinString_t.proto";
|
||||||
|
|
||||||
|
message BaseResponse {
|
||||||
|
required int32 _Ret = 1;
|
||||||
|
required SKBuiltinString_t _ErrMsg = 2;
|
||||||
|
}
|
17
MMPro/micromsg/proto/BaseResponseErrMsg.proto
Normal file
17
MMPro/micromsg/proto/BaseResponseErrMsg.proto
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BaseResponseErrMsg {
|
||||||
|
required int32 _ShowType = 1;
|
||||||
|
optional string _Content = 2;
|
||||||
|
optional string _Url = 3;
|
||||||
|
required int32 _DispSec = 4;
|
||||||
|
optional string _Title = 5;
|
||||||
|
required int32 _Action = 6;
|
||||||
|
optional int32 _DelayConnSec = 7;
|
||||||
|
optional uint32 _Countdown = 8;
|
||||||
|
optional string _Ok = 9;
|
||||||
|
optional string _Cancel = 10;
|
||||||
|
}
|
10
MMPro/micromsg/proto/BatchDelCardItemRequest.proto
Normal file
10
MMPro/micromsg/proto/BatchDelCardItemRequest.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
|
||||||
|
message BatchDelCardItemRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
repeated string _CardIds = 2;
|
||||||
|
}
|
10
MMPro/micromsg/proto/BatchDelCardItemResponse.proto
Normal file
10
MMPro/micromsg/proto/BatchDelCardItemResponse.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message BatchDelCardItemResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
repeated string _SuccCardIds = 2;
|
||||||
|
}
|
11
MMPro/micromsg/proto/BatchDelFavItemRequest.proto
Normal file
11
MMPro/micromsg/proto/BatchDelFavItemRequest.proto
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
|
||||||
|
message BatchDelFavItemRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
required uint32 _Count = 2;
|
||||||
|
repeated uint32 _FavIdList = 3;
|
||||||
|
}
|
12
MMPro/micromsg/proto/BatchDelFavItemResponse.proto
Normal file
12
MMPro/micromsg/proto/BatchDelFavItemResponse.proto
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
import "DelFavItemRsp.proto";
|
||||||
|
|
||||||
|
message BatchDelFavItemResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
required uint32 _Count = 2;
|
||||||
|
repeated DelFavItemRsp _List = 3;
|
||||||
|
}
|
11
MMPro/micromsg/proto/BatchDelGameMsgRequest.proto
Normal file
11
MMPro/micromsg/proto/BatchDelGameMsgRequest.proto
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseRequest.proto";
|
||||||
|
|
||||||
|
message BatchDelGameMsgRequest {
|
||||||
|
required BaseRequest _BaseRequest = 1;
|
||||||
|
required uint32 _Count = 2;
|
||||||
|
repeated uint32 _MsgIdList = 3;
|
||||||
|
}
|
12
MMPro/micromsg/proto/BatchDelGameMsgResponse.proto
Normal file
12
MMPro/micromsg/proto/BatchDelGameMsgResponse.proto
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
import "DelGameMsgRsp.proto";
|
||||||
|
|
||||||
|
message BatchDelGameMsgResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
required uint32 _Count = 2;
|
||||||
|
repeated DelGameMsgRsp _List = 3;
|
||||||
|
}
|
8
MMPro/micromsg/proto/BatchEmojiBackupRequest.proto
Normal file
8
MMPro/micromsg/proto/BatchEmojiBackupRequest.proto
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
|
||||||
|
message BatchEmojiBackupRequest {
|
||||||
|
repeated string _Md5List = 1;
|
||||||
|
}
|
10
MMPro/micromsg/proto/BatchEmojiBackupResponse.proto
Normal file
10
MMPro/micromsg/proto/BatchEmojiBackupResponse.proto
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
|
||||||
|
package MMPro.micromsg;
|
||||||
|
|
||||||
|
import "BaseResponse.proto";
|
||||||
|
|
||||||
|
message BatchEmojiBackupResponse {
|
||||||
|
required BaseResponse _BaseResponse = 1;
|
||||||
|
repeated string _NeedUploadMd5List = 2;
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user