mirror of
https://github.com/huiyadanli/RevokeMsgPatcher.git
synced 2026-09-09 13:04:47 +08:00
[+] 添加自动监听微信进程并进行多开的功能
This commit is contained in:
@@ -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