obs-studio/plugins/win-capture/nt-stuff.h
Richard Stanway b2e30c955d win-capture: Move NT functions to shared file
Having them declared statically in a header included by multiple
compilation units results in duplicate functions being created.
2021-07-24 23:15:45 +02:00

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);