mirror of
https://github.com/SafeBreach-Labs/PoolParty
synced 2026-06-06 16:44:29 +00:00
15 lines
348 B
C++
15 lines
348 B
C++
#pragma once
|
|
|
|
#include <Windows.h>
|
|
|
|
#include <sstream>
|
|
#include <string>
|
|
|
|
// ------------//
|
|
// Proto types //
|
|
// ------------//
|
|
|
|
std::string GetLastErrorString(std::string FailedFunctionName, DWORD dwLastError);
|
|
|
|
std::string w_FormatMessageA(DWORD dwFlags, LPCVOID lpSource, DWORD dwMessageId, DWORD dwLanguageId, DWORD nSize, va_list* Arguments);
|