[+] 添加自动监听微信进程并进行多开的功能

This commit is contained in:
huiyadanli
2019-12-17 01:33:00 +08:00
parent 4dc97cdfdb
commit a53989a0c3
5 changed files with 250 additions and 218 deletions

View File

@@ -0,0 +1,17 @@
using System.Diagnostics;
namespace RevokeMsgPatcher.MultiInstance
{
public class WechatProcess
{
public Process Proc { get; set; }
public bool MutexClosed { get; set; }
public WechatProcess(Process p)
{
Proc = p;
MutexClosed = false;
}
}
}