Skip to content
Snippets Groups Projects
Commit 76a5e0a2 authored by Robert Reif's avatar Robert Reif Committed by Alexandre Julliard
Browse files

Added speaker config macros.

parent 9382aed1
No related branches found
No related tags found
No related merge requests found
......@@ -253,6 +253,10 @@ typedef const DSBPOSITIONNOTIFY *LPCDSBPOSITIONNOTIFY;
#define DSSPEAKER_GEOMETRY_WIDE 0x00000014 /* 20 degrees */
#define DSSPEAKER_GEOMETRY_MAX 0x000000B4 /* 180 degrees */
#define DSSPEAKER_COMBINED(c, g) ((DWORD)(((BYTE)(c)) | ((DWORD)((BYTE)(g))) << 16))
#define DSSPEAKER_CONFIG(a) ((BYTE)(a))
#define DSSPEAKER_GEOMETRY(a) ((BYTE)(((DWORD)(a) >> 16) & 0x00FF))
#define DS_CERTIFIED 0x00000000
#define DS_UNCERTIFIED 0x00000001
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment