[+] 添加自动监听微信进程并进行多开的功能
This commit is contained in:
17
RevokeMsgPatcher.MultiInstance/WechatProcess.cs
Normal file
17
RevokeMsgPatcher.MultiInstance/WechatProcess.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user