Commit f48d9035 authored by David Reid's avatar David Reid

WASAPI: Add a missing field to ma_AudioClientProperties.

Public issue https://github.com/mackron/miniaudio/issues/1028
parent 3bdd39fd
......@@ -21811,11 +21811,21 @@ typedef enum
MA_AudioCategory_Other = 0 /* <-- miniaudio is only caring about Other. */
} MA_AUDIO_STREAM_CATEGORY;
typedef enum
{
MA_AUDCLNT_STREAMOPTIONS_NONE,
MA_AUDCLNT_STREAMOPTIONS_RAW,
MA_AUDCLNT_STREAMOPTIONS_MATCH_FORMAT,
MA_AUDCLNT_STREAMOPTIONS_AMBISONICS,
MA_AUDCLNT_STREAMOPTIONS_POST_VOLUME_LOOPBACK
} MA_AUDCLNT_STREAMOPTIONS;
typedef struct
{
ma_uint32 cbSize;
BOOL bIsOffload;
MA_AUDIO_STREAM_CATEGORY eCategory;
MA_AUDCLNT_STREAMOPTIONS Options;
} ma_AudioClientProperties;
/* IUnknown */
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