b2e30c955d
Having them declared statically in a header included by multiple compilation units results in duplicate functions being created.
8 lines
247 B
C
8 lines
247 B
C
#pragma once
|
|
|
|
bool thread_is_suspended(DWORD process_id, DWORD thread_id);
|
|
HANDLE nt_create_mutex(const wchar_t *name);
|
|
HANDLE nt_open_mutex(const wchar_t *name);
|
|
HANDLE nt_open_event(const wchar_t *name);
|
|
HANDLE nt_open_map(const wchar_t *name);
|