21 lines
250 B
C++
21 lines
250 B
C++
#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;
|
|
} |