Commit 860a5f69 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

winecoreaudio: Implement Wow64 midi entry points in the Unix libraray.

parent b20c658f
......@@ -1966,11 +1966,11 @@ unixlib_entry_t __wine_unix_call_wow64_funcs[] =
wow64_get_frequency,
is_started,
wow64_set_volumes,
midi_init,
wow64_midi_init,
midi_release,
midi_out_message,
midi_in_message,
midi_notify_wait,
wow64_midi_out_message,
wow64_midi_in_message,
wow64_midi_notify_wait,
};
#endif /* _WIN64 */
......@@ -264,6 +264,13 @@ NTSTATUS midi_out_message( void * ) DECLSPEC_HIDDEN;
NTSTATUS midi_in_message( void * ) DECLSPEC_HIDDEN;
NTSTATUS midi_notify_wait( void * ) DECLSPEC_HIDDEN;
#ifdef _WIN64
NTSTATUS wow64_midi_init(void *args) DECLSPEC_HIDDEN;
NTSTATUS wow64_midi_out_message(void *args) DECLSPEC_HIDDEN;
NTSTATUS wow64_midi_in_message(void *args) DECLSPEC_HIDDEN;
NTSTATUS 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, unix_ ## func, params )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment