This commit is contained in:
2026-08-24 14:47:59 +08:00
parent e91e372b19
commit 75d9b25362
45 changed files with 17462 additions and 129 deletions
+6 -1
View File
@@ -25,6 +25,8 @@ enum class CommandId : uint32_t
UnloadDriver = 3,
QueryStatus = 4,
BreakpointRemoved = 5,
CheckVMware = 6,
CheckVmx = 7,
};
#pragma pack(push, 8)
@@ -53,7 +55,10 @@ struct PrintfRequest
struct LoadDriverRequest
{
wchar_t service_name[128];
wchar_t driver_path[MAX_PATH];
DWORD status;
};
struct UnloadDriverRequest
@@ -113,6 +118,6 @@ bool WideToUtf8(const std::wstring& input, char* output, size_t output_size);
BOOL DllClientPrintfW(const wchar_t* text);
BOOL HBClientLoadDriverW();
BOOL HBClientLoadDriverW(PDWORD status);
BOOL QueryServerAlreadyOpen();