diff options
author | Chris Robinson <[email protected]> | 2012-06-15 23:46:09 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-06-15 23:46:09 -0700 |
commit | ad2643d8af3a47ad24369e4a9189dd95307e5672 (patch) | |
tree | 24070a35bc7a5e9443ccba1300df11328f479558 /include/AL/alc.h | |
parent | 46840ee787c7ac95e32765a2c2dec6b7b6fc5c7c (diff) |
Clarify some comments, fix some definition ordering, and add some includes
Diffstat (limited to 'include/AL/alc.h')
-rw-r--r-- | include/AL/alc.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/AL/alc.h b/include/AL/alc.h index e7a512ce..294e8b33 100644 --- a/include/AL/alc.h +++ b/include/AL/alc.h @@ -117,6 +117,14 @@ typedef void ALCvoid; #define ALC_OUT_OF_MEMORY 0xA005 +/** Runtime ALC version. */ +#define ALC_MAJOR_VERSION 0x1000 +#define ALC_MINOR_VERSION 0x1001 + +/** Context attribute list properties. */ +#define ALC_ATTRIBUTES_SIZE 0x1002 +#define ALC_ALL_ATTRIBUTES 0x1003 + /** String for the default device specifier. */ #define ALC_DEFAULT_DEVICE_SPECIFIER 0x1004 /** @@ -129,14 +137,6 @@ typedef void ALCvoid; /** String for space-separated list of ALC extensions. */ #define ALC_EXTENSIONS 0x1006 -/** Runtime ALC version. */ -#define ALC_MAJOR_VERSION 0x1000 -#define ALC_MINOR_VERSION 0x1001 - -/** Context attribute list properties. */ -#define ALC_ATTRIBUTES_SIZE 0x1002 -#define ALC_ALL_ATTRIBUTES 0x1003 - /** Capture extension */ #define ALC_EXT_CAPTURE 1 |