mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
16 lines
275 B
C
16 lines
275 B
C
#ifndef WINE_H
|
|
#define WINE_H
|
|
|
|
#define IS_WINE (GetProcAddress(GetModuleHandleA("ntdll.dll"), "wine_get_version") != 0)
|
|
|
|
// ### types ###
|
|
|
|
// ### Variables ###
|
|
|
|
// ### Functions ###
|
|
|
|
BOOL wine_add_dll_overrides();
|
|
BOOL wine_add_dll_override(const WCHAR* dll_name);
|
|
|
|
#endif
|