2025-07-13 16:23:35 +08:00
|
|
|
#pragma once
|
|
|
|
|
#include "head.h"
|
|
|
|
|
namespace Tools {
|
2025-07-13 18:47:55 +08:00
|
|
|
auto EnableDebugPrivilege(bool bEnable) -> bool;
|
|
|
|
|
auto Is64BitPorcess(HANDLE hProcess) -> bool;
|
|
|
|
|
auto FindPatternInMemory(uint64_t StartAddress, size_t MemorySize,
|
|
|
|
|
std::string pattern) -> uint64_t;
|
|
|
|
|
}; // namespace Tools
|