mirror of
https://github.com/1dot13/source.git
synced 2026-08-05 14:00:23 +02:00
Move wine.cpp into its own library
avoid extra compilations that way
This commit is contained in:
committed by
majcosta
parent
fd6ffd8d69
commit
22e67f66fa
@@ -0,0 +1,15 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user