Skip to content

Commit 6370555

Browse files
authored
fixed anti-debug function return types
1 parent 81e7707 commit 6370555

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fud-uuid-shc.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ typedef LPVOID (WINAPI * pVirtualAllocExNuma) (
2626
);
2727

2828

29-
BOOL checkNUMA() {
29+
bool checkNUMA() {
3030
LPVOID mem{NULL};
3131
pVirtualAllocExNuma myVirtualAllocExNuma = (pVirtualAllocExNuma)GetProcAddress(GetModuleHandle("kernel32.dll"), "VirtualAllocExNuma");
3232
mem = myVirtualAllocExNuma(GetCurrentProcess(), NULL, 1000, MEM_RESERVE | MEM_COMMIT, PAGE_EXECUTE_READWRITE, 0);
@@ -38,7 +38,7 @@ BOOL checkNUMA() {
3838
}
3939

4040

41-
BOOL checkResources() {
41+
bool checkResources() {
4242
SYSTEM_INFO s{};
4343
MEMORYSTATUSEX ms{};
4444
DWORD procNum{};

0 commit comments

Comments
 (0)