Go to the source code of this file.
|
#define | WUTIL_FUNC(varName, ret, params) ret (WINAPI* varName) params |
|
#define | WUTIL_IMPORT(hModule, procName, varName) |
|
#define | WUTIL_IMPORT_KERNEL32(procName, varName) WUTIL_IMPORT(GetModuleHandleW(L"kernel32.dll"), procName, varName) |
|
#define | WUTIL_IMPORT_NTDLL(procName, varName) WUTIL_IMPORT(GetModuleHandleW(L"ntdll.dll"), procName, varName) |
|
◆ WUTIL_FUNC
#define WUTIL_FUNC |
( |
|
varName, |
|
|
|
ret, |
|
|
|
params |
|
) |
| ret (WINAPI* varName) params |
◆ WUTIL_IMPORT
#define WUTIL_IMPORT |
( |
|
hModule, |
|
|
|
procName, |
|
|
|
varName |
|
) |
| |
Value:
const FARPROC f = GetProcAddress(hModule, #procName);\
memcpy(&varName, &f, sizeof(FARPROC));\
)
#define STMT(STMT_code__)
package code into a single statement.
Definition: code_generation.h:41
◆ WUTIL_IMPORT_KERNEL32
#define WUTIL_IMPORT_KERNEL32 |
( |
|
procName, |
|
|
|
varName |
|
) |
| WUTIL_IMPORT(GetModuleHandleW(L"kernel32.dll"), procName, varName) |
◆ WUTIL_IMPORT_NTDLL
#define WUTIL_IMPORT_NTDLL |
( |
|
procName, |
|
|
|
varName |
|
) |
| WUTIL_IMPORT(GetModuleHandleW(L"ntdll.dll"), procName, varName) |
◆ WinLockId
Enumerator |
---|
WDBG_SYM_CS | |
WDIR_WATCH_CS | |
NUM_CS | |
◆ StatusFromWin()
- Returns
- the Status equivalent of GetLastError(), or ERR::FAIL if there's no equivalent. SetLastError(0) should be called before the Windows function to make sure no stale errors are returned.
◆ wutil_Allocate()
void * wutil_Allocate |
( |
size_t |
size | ) |
|
◆ wutil_AppWindow()
- Returns
- handle to the first window owned by the current process, or 0 if none exist (e.g. it hasn't yet created one).
enumerates all top-level windows and stops if PID matches. once this function returns a non-NULL handle, it will always return that cached value.
◆ wutil_EnableHiDPIOnWindows()
void wutil_EnableHiDPIOnWindows |
( |
| ) |
|
◆ wutil_Free()
void wutil_Free |
( |
void * |
p | ) |
|
◆ wutil_IsLocked()
◆ wutil_IsValidHandle()
template<typename H >
bool wutil_IsValidHandle |
( |
H |
h | ) |
|
◆ wutil_LibModuleHandle()
HMODULE wutil_LibModuleHandle |
( |
| ) |
|
- Returns
- module handle of lib code (that of the main EXE if linked statically, otherwise the DLL). this is necessary for the error dialog.
◆ wutil_LocalAppdataPath()
OsPath wutil_LocalAppdataPath |
( |
| ) |
|
◆ wutil_Lock()
◆ wutil_PersonalPath()
◆ wutil_RoamingAppdataPath()
OsPath wutil_RoamingAppdataPath |
( |
| ) |
|
◆ wutil_SetAppWindow()
void wutil_SetAppWindow |
( |
void * |
hwnd | ) |
|
◆ wutil_SetPrivilege()
Status wutil_SetPrivilege |
( |
const wchar_t * |
privilege, |
|
|
bool |
enable |
|
) |
| |
◆ wutil_Unlock()