Files
sleep_duck_eye/sleep_duck/tools.h
Huoji's 3a01b7dc39 update
2025-07-13 18:47:55 +08:00

9 lines
293 B
C++

#pragma once
#include "head.h"
namespace Tools {
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