feat comm init win10-win11

This commit is contained in:
2026-06-16 10:22:02 +08:00
parent 18242cc37d
commit 1dfe28ca38
8 changed files with 282 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#pragma once
#include "Base.h"
struct CMD_COMM
{
DWORD64 CommID;
DWORD64 Pid;
DWORD64 status;
};
enum CMD
{
MSG_BASE = 0x10000,
DRIVER_COMM_TEST,
DRIVER_PROTECT_PROCESS
};
namespace comm_dispatch
{
auto dispatch(CMD_COMM* data)->NTSTATUS;
}