├── 000-PC微信_成品_3.6.0.18 ├── WeChatApi.dll ├── inject_tool.exe ├── python版演示案例 │ ├── .idea │ │ ├── deployment.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── python版演示案例.iml │ │ ├── vcs.xml │ │ └── workspace.xml │ └── demo.py └── 注入工具(图形界面版).exe ├── 001-PC微信_源码_3.6.0.18 ├── Collection │ ├── Collection.sln │ ├── Collection.vcxproj │ ├── Collection.vcxproj.filters │ ├── Collection.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── GetChatRoomMemberIdList │ ├── GetChatRoomMemberIdList.sln │ ├── GetChatRoomMemberIdList.vcxproj │ ├── GetChatRoomMemberIdList.vcxproj.filters │ ├── GetChatRoomMemberIdList.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── GetSelfInfo │ ├── GetSelfInfo.sln │ ├── GetSelfInfo.vcxproj │ ├── GetSelfInfo.vcxproj.filters │ ├── GetSelfInfo.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── GetUserListByMem │ ├── GetUserListByMem.sln │ ├── GetUserListByMem.vcxproj │ ├── GetUserListByMem.vcxproj.filters │ ├── GetUserListByMem.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── HookQrcode │ ├── HookQrcode.sln │ ├── HookQrcode.vcxproj │ ├── HookQrcode.vcxproj.filters │ ├── HookQrcode.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── HookRecvMsg │ ├── HookRecvMsg.sln │ ├── HookRecvMsg.vcxproj │ ├── HookRecvMsg.vcxproj.filters │ ├── HookRecvMsg.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── Logout │ ├── Logout.sln │ ├── Logout.vcxproj │ ├── Logout.vcxproj.filters │ ├── Logout.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── RefreshQrcode │ ├── RefreshQrcode.sln │ ├── RefreshQrcode.vcxproj │ ├── RefreshQrcode.vcxproj.filters │ ├── RefreshQrcode.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── SendImgMsg │ ├── SendImgMsg.sln │ ├── SendImgMsg.vcxproj │ ├── SendImgMsg.vcxproj.filters │ ├── SendImgMsg.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── SendTextMsg │ ├── SendTextMsg.sln │ ├── SendTextMsg.vcxproj │ ├── SendTextMsg.vcxproj.filters │ ├── SendTextMsg.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── SendXmlMsg │ ├── SendXmlMsg.sln │ ├── SendXmlMsg.vcxproj │ ├── SendXmlMsg.vcxproj.filters │ ├── SendXmlMsg.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h └── UpdateFriendRemark │ ├── UpdateFriendRemark.sln │ ├── UpdateFriendRemark.vcxproj │ ├── UpdateFriendRemark.vcxproj.filters │ ├── UpdateFriendRemark.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── 002-PC微信_源码_3.9.2.23 └── SendTextMsg │ ├── SendTextMsg.sln │ ├── SendTextMsg.vcxproj │ ├── SendTextMsg.vcxproj.filters │ ├── SendTextMsg.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── 003-PC微信_源码_x64_3.9.5.81 └── SendImgMsg │ ├── SendImgMsg.sln │ ├── SendImgMsg.vcxproj │ ├── SendImgMsg.vcxproj.filters │ ├── SendImgMsg.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── 004-PC微信_源码_3.9.10.16 └── LockWeChat │ ├── LockWeChat.sln │ ├── LockWeChat.vcxproj │ ├── LockWeChat.vcxproj.filters │ ├── LockWeChat.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── 005-PC微信_源码_x64_3.9.10.19 ├── SendCardMsg │ ├── SendCardMsg.sln │ ├── SendCardMsg.vcxproj │ ├── SendCardMsg.vcxproj.filters │ ├── SendCardMsg.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── SendGifMsg │ ├── SendGifMsg.sln │ ├── SendGifMsg.vcxproj │ ├── SendGifMsg.vcxproj.filters │ ├── SendGifMsg.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h └── SendTextMsg │ ├── SendTextMsg.sln │ ├── SendTextMsg.vcxproj │ ├── SendTextMsg.vcxproj.filters │ ├── SendTextMsg.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── 006-PC微信_源码_x64_4.1.2.16 └── AutoUpdateSwitch │ ├── AutoUpdateSwitch.sln │ ├── AutoUpdateSwitch.vcxproj │ ├── AutoUpdateSwitch.vcxproj.filters │ ├── AutoUpdateSwitch.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h └── README.md /000-PC微信_成品_3.6.0.18/WeChatApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/000-PC微信_成品_3.6.0.18/WeChatApi.dll -------------------------------------------------------------------------------- /000-PC微信_成品_3.6.0.18/inject_tool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/000-PC微信_成品_3.6.0.18/inject_tool.exe -------------------------------------------------------------------------------- /000-PC微信_成品_3.6.0.18/python版演示案例/.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/000-PC微信_成品_3.6.0.18/python版演示案例/.idea/deployment.xml -------------------------------------------------------------------------------- /000-PC微信_成品_3.6.0.18/python版演示案例/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/000-PC微信_成品_3.6.0.18/python版演示案例/.idea/encodings.xml -------------------------------------------------------------------------------- /000-PC微信_成品_3.6.0.18/python版演示案例/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/000-PC微信_成品_3.6.0.18/python版演示案例/.idea/misc.xml -------------------------------------------------------------------------------- /000-PC微信_成品_3.6.0.18/python版演示案例/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/000-PC微信_成品_3.6.0.18/python版演示案例/.idea/modules.xml -------------------------------------------------------------------------------- /000-PC微信_成品_3.6.0.18/python版演示案例/.idea/python版演示案例.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/000-PC微信_成品_3.6.0.18/python版演示案例/.idea/python版演示案例.iml -------------------------------------------------------------------------------- /000-PC微信_成品_3.6.0.18/python版演示案例/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/000-PC微信_成品_3.6.0.18/python版演示案例/.idea/vcs.xml -------------------------------------------------------------------------------- /000-PC微信_成品_3.6.0.18/python版演示案例/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/000-PC微信_成品_3.6.0.18/python版演示案例/.idea/workspace.xml -------------------------------------------------------------------------------- /000-PC微信_成品_3.6.0.18/python版演示案例/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/000-PC微信_成品_3.6.0.18/python版演示案例/demo.py -------------------------------------------------------------------------------- /000-PC微信_成品_3.6.0.18/注入工具(图形界面版).exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/000-PC微信_成品_3.6.0.18/注入工具(图形界面版).exe -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Collection/Collection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Collection/Collection.sln -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Collection/Collection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Collection/Collection.vcxproj -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Collection/Collection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Collection/Collection.vcxproj.filters -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Collection/Collection.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Collection/Collection.vcxproj.user -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Collection/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Collection/dllmain.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Collection/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Collection/framework.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Collection/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Collection/pch.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Collection/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Collection/pch.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/GetChatRoomMemberIdList.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/GetChatRoomMemberIdList.sln -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/GetChatRoomMemberIdList.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/GetChatRoomMemberIdList.vcxproj -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/GetChatRoomMemberIdList.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/GetChatRoomMemberIdList.vcxproj.filters -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/GetChatRoomMemberIdList.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/GetChatRoomMemberIdList.vcxproj.user -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/dllmain.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/framework.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/pch.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetChatRoomMemberIdList/pch.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetSelfInfo/GetSelfInfo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetSelfInfo/GetSelfInfo.sln -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetSelfInfo/GetSelfInfo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetSelfInfo/GetSelfInfo.vcxproj -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetSelfInfo/GetSelfInfo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetSelfInfo/GetSelfInfo.vcxproj.filters -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetSelfInfo/GetSelfInfo.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetSelfInfo/GetSelfInfo.vcxproj.user -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetSelfInfo/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetSelfInfo/dllmain.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetSelfInfo/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetSelfInfo/framework.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetSelfInfo/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetSelfInfo/pch.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetSelfInfo/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetSelfInfo/pch.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetUserListByMem/GetUserListByMem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetUserListByMem/GetUserListByMem.sln -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetUserListByMem/GetUserListByMem.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetUserListByMem/GetUserListByMem.vcxproj -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetUserListByMem/GetUserListByMem.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetUserListByMem/GetUserListByMem.vcxproj.filters -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetUserListByMem/GetUserListByMem.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetUserListByMem/GetUserListByMem.vcxproj.user -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetUserListByMem/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetUserListByMem/dllmain.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetUserListByMem/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetUserListByMem/framework.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetUserListByMem/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetUserListByMem/pch.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/GetUserListByMem/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/GetUserListByMem/pch.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookQrcode/HookQrcode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookQrcode/HookQrcode.sln -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookQrcode/HookQrcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookQrcode/HookQrcode.vcxproj -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookQrcode/HookQrcode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookQrcode/HookQrcode.vcxproj.filters -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookQrcode/HookQrcode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookQrcode/HookQrcode.vcxproj.user -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookQrcode/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookQrcode/dllmain.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookQrcode/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookQrcode/framework.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookQrcode/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookQrcode/pch.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookQrcode/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookQrcode/pch.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookRecvMsg/HookRecvMsg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookRecvMsg/HookRecvMsg.sln -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookRecvMsg/HookRecvMsg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookRecvMsg/HookRecvMsg.vcxproj -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookRecvMsg/HookRecvMsg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookRecvMsg/HookRecvMsg.vcxproj.filters -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookRecvMsg/HookRecvMsg.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookRecvMsg/HookRecvMsg.vcxproj.user -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookRecvMsg/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookRecvMsg/dllmain.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookRecvMsg/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookRecvMsg/framework.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookRecvMsg/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookRecvMsg/pch.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/HookRecvMsg/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/HookRecvMsg/pch.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Logout/Logout.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Logout/Logout.sln -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Logout/Logout.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Logout/Logout.vcxproj -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Logout/Logout.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Logout/Logout.vcxproj.filters -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Logout/Logout.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Logout/Logout.vcxproj.user -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Logout/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Logout/dllmain.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Logout/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Logout/framework.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Logout/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Logout/pch.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/Logout/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/Logout/pch.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/RefreshQrcode/RefreshQrcode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/RefreshQrcode/RefreshQrcode.sln -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/RefreshQrcode/RefreshQrcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/RefreshQrcode/RefreshQrcode.vcxproj -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/RefreshQrcode/RefreshQrcode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/RefreshQrcode/RefreshQrcode.vcxproj.filters -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/RefreshQrcode/RefreshQrcode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/RefreshQrcode/RefreshQrcode.vcxproj.user -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/RefreshQrcode/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/RefreshQrcode/dllmain.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/RefreshQrcode/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/RefreshQrcode/framework.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/RefreshQrcode/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/RefreshQrcode/pch.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/RefreshQrcode/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/RefreshQrcode/pch.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendImgMsg/SendImgMsg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendImgMsg/SendImgMsg.sln -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendImgMsg/SendImgMsg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendImgMsg/SendImgMsg.vcxproj -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendImgMsg/SendImgMsg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendImgMsg/SendImgMsg.vcxproj.filters -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendImgMsg/SendImgMsg.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendImgMsg/SendImgMsg.vcxproj.user -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendImgMsg/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendImgMsg/dllmain.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendImgMsg/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendImgMsg/framework.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendImgMsg/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendImgMsg/pch.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendImgMsg/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendImgMsg/pch.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendTextMsg/SendTextMsg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendTextMsg/SendTextMsg.sln -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendTextMsg/SendTextMsg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendTextMsg/SendTextMsg.vcxproj -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendTextMsg/SendTextMsg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendTextMsg/SendTextMsg.vcxproj.filters -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendTextMsg/SendTextMsg.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendTextMsg/SendTextMsg.vcxproj.user -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendTextMsg/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendTextMsg/dllmain.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendTextMsg/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendTextMsg/framework.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendTextMsg/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendTextMsg/pch.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendTextMsg/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendTextMsg/pch.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendXmlMsg/SendXmlMsg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendXmlMsg/SendXmlMsg.sln -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendXmlMsg/SendXmlMsg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendXmlMsg/SendXmlMsg.vcxproj -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendXmlMsg/SendXmlMsg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendXmlMsg/SendXmlMsg.vcxproj.filters -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendXmlMsg/SendXmlMsg.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendXmlMsg/SendXmlMsg.vcxproj.user -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendXmlMsg/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendXmlMsg/dllmain.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendXmlMsg/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendXmlMsg/framework.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendXmlMsg/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendXmlMsg/pch.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/SendXmlMsg/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/SendXmlMsg/pch.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/UpdateFriendRemark/UpdateFriendRemark.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/UpdateFriendRemark/UpdateFriendRemark.sln -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/UpdateFriendRemark/UpdateFriendRemark.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/UpdateFriendRemark/UpdateFriendRemark.vcxproj -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/UpdateFriendRemark/UpdateFriendRemark.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/UpdateFriendRemark/UpdateFriendRemark.vcxproj.filters -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/UpdateFriendRemark/UpdateFriendRemark.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/UpdateFriendRemark/UpdateFriendRemark.vcxproj.user -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/UpdateFriendRemark/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/UpdateFriendRemark/dllmain.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/UpdateFriendRemark/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/UpdateFriendRemark/framework.h -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/UpdateFriendRemark/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/UpdateFriendRemark/pch.cpp -------------------------------------------------------------------------------- /001-PC微信_源码_3.6.0.18/UpdateFriendRemark/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/001-PC微信_源码_3.6.0.18/UpdateFriendRemark/pch.h -------------------------------------------------------------------------------- /002-PC微信_源码_3.9.2.23/SendTextMsg/SendTextMsg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/002-PC微信_源码_3.9.2.23/SendTextMsg/SendTextMsg.sln -------------------------------------------------------------------------------- /002-PC微信_源码_3.9.2.23/SendTextMsg/SendTextMsg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/002-PC微信_源码_3.9.2.23/SendTextMsg/SendTextMsg.vcxproj -------------------------------------------------------------------------------- /002-PC微信_源码_3.9.2.23/SendTextMsg/SendTextMsg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/002-PC微信_源码_3.9.2.23/SendTextMsg/SendTextMsg.vcxproj.filters -------------------------------------------------------------------------------- /002-PC微信_源码_3.9.2.23/SendTextMsg/SendTextMsg.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/002-PC微信_源码_3.9.2.23/SendTextMsg/SendTextMsg.vcxproj.user -------------------------------------------------------------------------------- /002-PC微信_源码_3.9.2.23/SendTextMsg/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/002-PC微信_源码_3.9.2.23/SendTextMsg/dllmain.cpp -------------------------------------------------------------------------------- /002-PC微信_源码_3.9.2.23/SendTextMsg/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/002-PC微信_源码_3.9.2.23/SendTextMsg/framework.h -------------------------------------------------------------------------------- /002-PC微信_源码_3.9.2.23/SendTextMsg/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/002-PC微信_源码_3.9.2.23/SendTextMsg/pch.cpp -------------------------------------------------------------------------------- /002-PC微信_源码_3.9.2.23/SendTextMsg/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/002-PC微信_源码_3.9.2.23/SendTextMsg/pch.h -------------------------------------------------------------------------------- /003-PC微信_源码_x64_3.9.5.81/SendImgMsg/SendImgMsg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/003-PC微信_源码_x64_3.9.5.81/SendImgMsg/SendImgMsg.sln -------------------------------------------------------------------------------- /003-PC微信_源码_x64_3.9.5.81/SendImgMsg/SendImgMsg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/003-PC微信_源码_x64_3.9.5.81/SendImgMsg/SendImgMsg.vcxproj -------------------------------------------------------------------------------- /003-PC微信_源码_x64_3.9.5.81/SendImgMsg/SendImgMsg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/003-PC微信_源码_x64_3.9.5.81/SendImgMsg/SendImgMsg.vcxproj.filters -------------------------------------------------------------------------------- /003-PC微信_源码_x64_3.9.5.81/SendImgMsg/SendImgMsg.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/003-PC微信_源码_x64_3.9.5.81/SendImgMsg/SendImgMsg.vcxproj.user -------------------------------------------------------------------------------- /003-PC微信_源码_x64_3.9.5.81/SendImgMsg/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/003-PC微信_源码_x64_3.9.5.81/SendImgMsg/dllmain.cpp -------------------------------------------------------------------------------- /003-PC微信_源码_x64_3.9.5.81/SendImgMsg/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/003-PC微信_源码_x64_3.9.5.81/SendImgMsg/framework.h -------------------------------------------------------------------------------- /003-PC微信_源码_x64_3.9.5.81/SendImgMsg/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/003-PC微信_源码_x64_3.9.5.81/SendImgMsg/pch.cpp -------------------------------------------------------------------------------- /003-PC微信_源码_x64_3.9.5.81/SendImgMsg/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/003-PC微信_源码_x64_3.9.5.81/SendImgMsg/pch.h -------------------------------------------------------------------------------- /004-PC微信_源码_3.9.10.16/LockWeChat/LockWeChat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/004-PC微信_源码_3.9.10.16/LockWeChat/LockWeChat.sln -------------------------------------------------------------------------------- /004-PC微信_源码_3.9.10.16/LockWeChat/LockWeChat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/004-PC微信_源码_3.9.10.16/LockWeChat/LockWeChat.vcxproj -------------------------------------------------------------------------------- /004-PC微信_源码_3.9.10.16/LockWeChat/LockWeChat.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/004-PC微信_源码_3.9.10.16/LockWeChat/LockWeChat.vcxproj.filters -------------------------------------------------------------------------------- /004-PC微信_源码_3.9.10.16/LockWeChat/LockWeChat.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/004-PC微信_源码_3.9.10.16/LockWeChat/LockWeChat.vcxproj.user -------------------------------------------------------------------------------- /004-PC微信_源码_3.9.10.16/LockWeChat/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/004-PC微信_源码_3.9.10.16/LockWeChat/dllmain.cpp -------------------------------------------------------------------------------- /004-PC微信_源码_3.9.10.16/LockWeChat/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/004-PC微信_源码_3.9.10.16/LockWeChat/framework.h -------------------------------------------------------------------------------- /004-PC微信_源码_3.9.10.16/LockWeChat/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/004-PC微信_源码_3.9.10.16/LockWeChat/pch.cpp -------------------------------------------------------------------------------- /004-PC微信_源码_3.9.10.16/LockWeChat/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/004-PC微信_源码_3.9.10.16/LockWeChat/pch.h -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendCardMsg/SendCardMsg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendCardMsg/SendCardMsg.sln -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendCardMsg/SendCardMsg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendCardMsg/SendCardMsg.vcxproj -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendCardMsg/SendCardMsg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendCardMsg/SendCardMsg.vcxproj.filters -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendCardMsg/SendCardMsg.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendCardMsg/SendCardMsg.vcxproj.user -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendCardMsg/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendCardMsg/dllmain.cpp -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendCardMsg/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendCardMsg/framework.h -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendCardMsg/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendCardMsg/pch.cpp -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendCardMsg/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendCardMsg/pch.h -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendGifMsg/SendGifMsg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendGifMsg/SendGifMsg.sln -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendGifMsg/SendGifMsg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendGifMsg/SendGifMsg.vcxproj -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendGifMsg/SendGifMsg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendGifMsg/SendGifMsg.vcxproj.filters -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendGifMsg/SendGifMsg.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendGifMsg/SendGifMsg.vcxproj.user -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendGifMsg/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendGifMsg/dllmain.cpp -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendGifMsg/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendGifMsg/framework.h -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendGifMsg/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendGifMsg/pch.cpp -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendGifMsg/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendGifMsg/pch.h -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendTextMsg/SendTextMsg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendTextMsg/SendTextMsg.sln -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendTextMsg/SendTextMsg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendTextMsg/SendTextMsg.vcxproj -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendTextMsg/SendTextMsg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendTextMsg/SendTextMsg.vcxproj.filters -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendTextMsg/SendTextMsg.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendTextMsg/SendTextMsg.vcxproj.user -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendTextMsg/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendTextMsg/dllmain.cpp -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendTextMsg/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendTextMsg/framework.h -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendTextMsg/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendTextMsg/pch.cpp -------------------------------------------------------------------------------- /005-PC微信_源码_x64_3.9.10.19/SendTextMsg/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/005-PC微信_源码_x64_3.9.10.19/SendTextMsg/pch.h -------------------------------------------------------------------------------- /006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/AutoUpdateSwitch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/AutoUpdateSwitch.sln -------------------------------------------------------------------------------- /006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/AutoUpdateSwitch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/AutoUpdateSwitch.vcxproj -------------------------------------------------------------------------------- /006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/AutoUpdateSwitch.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/AutoUpdateSwitch.vcxproj.filters -------------------------------------------------------------------------------- /006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/AutoUpdateSwitch.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/AutoUpdateSwitch.vcxproj.user -------------------------------------------------------------------------------- /006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/dllmain.cpp -------------------------------------------------------------------------------- /006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/framework.h -------------------------------------------------------------------------------- /006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/pch.cpp -------------------------------------------------------------------------------- /006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/006-PC微信_源码_x64_4.1.2.16/AutoUpdateSwitch/pch.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsanshui/WeChatApi/HEAD/README.md --------------------------------------------------------------------------------