added dynamic resolving of CmdId and ToUInt16

This commit is contained in:
REL
2024-10-14 05:54:32 -04:00
parent e9ace26d69
commit 298134c063
60 changed files with 18629 additions and 26 deletions

View File

@@ -2,7 +2,7 @@
#pragma once
#include <Windows.h>
#include <type_traits>
#include <vector>
namespace Util
{
@@ -13,5 +13,6 @@ namespace Util
void ErrorDialog(LPCSTR msg);
void Win32ErrorDialog(DWORD code, DWORD winerrcode);
uintptr_t PatternScan(uintptr_t start, uintptr_t end, const char* pattern);
std::vector<uintptr_t> PatternScanAll(uintptr_t start, uintptr_t end, const char* pattern);
}