| fmod.h | | fmod.h | |
| | | | |
| skipping to change at line 19 | | skipping to change at line 19 | |
| /* ========================================================================
==================== */ | | /* ========================================================================
==================== */ | |
| | | | |
| #ifndef _FMOD_H | | #ifndef _FMOD_H | |
| #define _FMOD_H | | #define _FMOD_H | |
| | | | |
| /* | | /* | |
| FMOD version number. Check this against FMOD::System::getVersion. | | FMOD version number. Check this against FMOD::System::getVersion. | |
| 0xaaaabbcc -> aaaa = major version number. bb = minor version number.
cc = development version number. | | 0xaaaabbcc -> aaaa = major version number. bb = minor version number.
cc = development version number. | |
| */ | | */ | |
| | | | |
|
| #define FMOD_VERSION 0x00044401 | | #define FMOD_VERSION 0x00044402 | |
| | | | |
| /* | | /* | |
| Compiler specific settings. | | Compiler specific settings. | |
| */ | | */ | |
| | | | |
| #if defined(__CYGWIN32__) | | #if defined(__CYGWIN32__) | |
| #define F_CDECL __cdecl | | #define F_CDECL __cdecl | |
| #define F_STDCALL __stdcall | | #define F_STDCALL __stdcall | |
| #define F_DECLSPEC __declspec | | #define F_DECLSPEC __declspec | |
| #define F_DLLEXPORT ( dllexport ) | | #define F_DLLEXPORT ( dllexport ) | |
| | | | |
| skipping to change at line 410 | | skipping to change at line 410 | |
| #define FMOD_CAPS_NONE 0x00000000 /* Device has no speci
al capabilities. */ | | #define FMOD_CAPS_NONE 0x00000000 /* Device has no speci
al capabilities. */ | |
| #define FMOD_CAPS_HARDWARE 0x00000001 /* Device supports har
dware mixing. */ | | #define FMOD_CAPS_HARDWARE 0x00000001 /* Device supports har
dware mixing. */ | |
| #define FMOD_CAPS_HARDWARE_EMULATED 0x00000002 /* User has device set
to 'Hardware acceleration = off' in control panel, and now extra 200ms lat
ency is incurred. */ | | #define FMOD_CAPS_HARDWARE_EMULATED 0x00000002 /* User has device set
to 'Hardware acceleration = off' in control panel, and now extra 200ms lat
ency is incurred. */ | |
| #define FMOD_CAPS_OUTPUT_MULTICHANNEL 0x00000004 /* Device can do multi
channel output, ie greater than 2 channels. */ | | #define FMOD_CAPS_OUTPUT_MULTICHANNEL 0x00000004 /* Device can do multi
channel output, ie greater than 2 channels. */ | |
| #define FMOD_CAPS_OUTPUT_FORMAT_PCM8 0x00000008 /* Device can output t
o 8bit integer PCM. */ | | #define FMOD_CAPS_OUTPUT_FORMAT_PCM8 0x00000008 /* Device can output t
o 8bit integer PCM. */ | |
| #define FMOD_CAPS_OUTPUT_FORMAT_PCM16 0x00000010 /* Device can output t
o 16bit integer PCM. */ | | #define FMOD_CAPS_OUTPUT_FORMAT_PCM16 0x00000010 /* Device can output t
o 16bit integer PCM. */ | |
| #define FMOD_CAPS_OUTPUT_FORMAT_PCM24 0x00000020 /* Device can output t
o 24bit integer PCM. */ | | #define FMOD_CAPS_OUTPUT_FORMAT_PCM24 0x00000020 /* Device can output t
o 24bit integer PCM. */ | |
| #define FMOD_CAPS_OUTPUT_FORMAT_PCM32 0x00000040 /* Device can output t
o 32bit integer PCM. */ | | #define FMOD_CAPS_OUTPUT_FORMAT_PCM32 0x00000040 /* Device can output t
o 32bit integer PCM. */ | |
| #define FMOD_CAPS_OUTPUT_FORMAT_PCMFLOAT 0x00000080 /* Device can output t
o 32bit floating point PCM. */ | | #define FMOD_CAPS_OUTPUT_FORMAT_PCMFLOAT 0x00000080 /* Device can output t
o 32bit floating point PCM. */ | |
| #define FMOD_CAPS_REVERB_LIMITED 0x00002000 /* Device supports som
e form of limited hardware reverb, maybe parameterless and only selectable
by environment. */ | | #define FMOD_CAPS_REVERB_LIMITED 0x00002000 /* Device supports som
e form of limited hardware reverb, maybe parameterless and only selectable
by environment. */ | |
|
| | | #define FMOD_CAPS_LOOPBACK 0x00004000 /* Device is a loopbac
k recording device */ | |
| /* [DEFINE_END] */ | | /* [DEFINE_END] */ | |
| | | | |
| /* | | /* | |
| [DEFINE] | | [DEFINE] | |
| [ | | [ | |
| [NAME] | | [NAME] | |
| FMOD_DEBUGLEVEL | | FMOD_DEBUGLEVEL | |
| | | | |
| [DESCRIPTION] | | [DESCRIPTION] | |
| Bit fields to use with FMOD::Debug_SetLevel / FMOD::Debug_GetLevel to c
ontrol the level of tty debug output with logging versions of FMOD (fmodL). | | Bit fields to use with FMOD::Debug_SetLevel / FMOD::Debug_GetLevel to c
ontrol the level of tty debug output with logging versions of FMOD (fmodL). | |
| | | | |
End of changes. 2 change blocks. |
| 1 lines changed or deleted | | 2 lines changed or added | |
|