14 lines
274 B
C++
14 lines
274 B
C++
#pragma once
|
|
#include "Base.h"
|
|
|
|
namespace utils
|
|
{
|
|
auto GetVersion() -> OSVERSIONINFOW;
|
|
|
|
auto FindSectionsCode(unsigned long long Base, const char* pattern, const char* mask, const char* name) -> ULONG64;
|
|
|
|
auto kernel_get_expotr_func(wchar_t* func_name) -> uintptr_t;
|
|
|
|
|
|
|
|
} |