1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

winecoreaudio.drv: Use the Unix call helpers.

This commit is contained in:
Alexandre Julliard 2022-11-24 10:31:49 +01:00
parent 9e4e8de7c1
commit c372caaebc
2 changed files with 2 additions and 7 deletions

View File

@ -43,8 +43,6 @@
WINE_DEFAULT_DEBUG_CHANNEL(coreaudio);
unixlib_handle_t coreaudio_handle = 0;
#define NULL_PTR_ERR MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, RPC_X_NULL_REF_POINTER)
static const REFERENCE_TIME DefaultPeriod = 100000;
@ -199,8 +197,7 @@ BOOL WINAPI DllMain(HINSTANCE dll, DWORD reason, void *reserved)
{
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(dll);
if(NtQueryVirtualMemory(GetCurrentProcess(), dll, MemoryWineUnixFuncs,
&coreaudio_handle, sizeof(coreaudio_handle), NULL))
if (__wine_init_unix_call())
return FALSE;
g_timer_q = CreateTimerQueue();
if(!g_timer_q)

View File

@ -33,6 +33,4 @@ NTSTATUS unix_wow64_midi_in_message(void *args) DECLSPEC_HIDDEN;
NTSTATUS unix_wow64_midi_notify_wait(void *args) DECLSPEC_HIDDEN;
#endif
extern unixlib_handle_t coreaudio_handle;
#define UNIX_CALL( func, params ) __wine_unix_call( coreaudio_handle, func, params )
#define UNIX_CALL( func, params ) WINE_UNIX_CALL( func, params )