Commit 129c7faf authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

winecoreaudio: Move create_stream and release_stream to the unixlib.

parent d5361a8b
......@@ -57,9 +57,29 @@ struct get_endpoint_ids_params
unsigned int default_idx;
};
struct create_stream_params
{
DWORD dev_id;
EDataFlow flow;
AUDCLNT_SHAREMODE share;
REFERENCE_TIME duration;
REFERENCE_TIME period;
const WAVEFORMATEX *fmt;
HRESULT result;
struct coreaudio_stream *stream;
};
struct release_stream_params
{
struct coreaudio_stream *stream;
HRESULT result;
};
enum unix_funcs
{
unix_get_endpoint_ids,
unix_create_stream,
unix_release_stream,
};
extern unixlib_handle_t coreaudio_handle;
......
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