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 0x00043703 | #define FMOD_VERSION 0x00043704 | |||
/* | /* | |||
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 652 | skipping to change at line 652 | |||
FMOD_SPEAKER_FRONT_RIGHT, | FMOD_SPEAKER_FRONT_RIGHT, | |||
FMOD_SPEAKER_FRONT_CENTER, | FMOD_SPEAKER_FRONT_CENTER, | |||
FMOD_SPEAKER_LOW_FREQUENCY, | FMOD_SPEAKER_LOW_FREQUENCY, | |||
FMOD_SPEAKER_BACK_LEFT, | FMOD_SPEAKER_BACK_LEFT, | |||
FMOD_SPEAKER_BACK_RIGHT, | FMOD_SPEAKER_BACK_RIGHT, | |||
FMOD_SPEAKER_SIDE_LEFT, | FMOD_SPEAKER_SIDE_LEFT, | |||
FMOD_SPEAKER_SIDE_RIGHT, | FMOD_SPEAKER_SIDE_RIGHT, | |||
FMOD_SPEAKER_MAX, /* Maximum numb er of speaker types supported. */ | FMOD_SPEAKER_MAX, /* Maximum numb er of speaker types supported. */ | |||
FMOD_SPEAKER_MONO = FMOD_SPEAKER_FRONT_LEFT, /* For use with FMOD_SPEAKERMODE_MONO and Channel::SetSpeakerLevels. Mapped to same value as FMOD_SPEAKER_FRONT_LEFT. */ | FMOD_SPEAKER_MONO = FMOD_SPEAKER_FRONT_LEFT, /* For use with FMOD_SPEAKERMODE_MONO and Channel::SetSpeakerLevels. Mapped to same value as FMOD_SPEAKER_FRONT_LEFT. */ | |||
FMOD_SPEAKER_NULL = FMOD_SPEAKER_MAX, /* A non speake r. Use this to send. */ | FMOD_SPEAKER_NULL = 65535, /* A non speake r. Use this with ASIO mapping to ignore a speaker. */ | |||
FMOD_SPEAKER_SBL = FMOD_SPEAKER_SIDE_LEFT, /* For use with FMOD_SPEAKERMODE_7POINT1 on PS3 where the extra speakers are surround back inside of side speakers. */ | FMOD_SPEAKER_SBL = FMOD_SPEAKER_SIDE_LEFT, /* For use with FMOD_SPEAKERMODE_7POINT1 on PS3 where the extra speakers are surround back inside of side speakers. */ | |||
FMOD_SPEAKER_SBR = FMOD_SPEAKER_SIDE_RIGHT, /* For use with FMOD_SPEAKERMODE_7POINT1 on PS3 where the extra speakers are surround back inside of side speakers. */ | FMOD_SPEAKER_SBR = FMOD_SPEAKER_SIDE_RIGHT, /* For use with FMOD_SPEAKERMODE_7POINT1 on PS3 where the extra speakers are surround back inside of side speakers. */ | |||
FMOD_SPEAKER_FORCEINT = 65536 /* Makes sure t his enum is signed 32bit. */ | FMOD_SPEAKER_FORCEINT = 65536 /* Makes sure t his enum is signed 32bit. */ | |||
} FMOD_SPEAKER; | } FMOD_SPEAKER; | |||
/* | /* | |||
[ENUM] | [ENUM] | |||
[ | [ | |||
[DESCRIPTION] | [DESCRIPTION] | |||
These are plugin types defined for use with the System::getNumPlugins, | These are plugin types defined for use with the System::getNumPlugins, | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
fmod_event.h | fmod_event.h | |||
---|---|---|---|---|
skipping to change at line 24 | skipping to change at line 24 | |||
#ifndef _FMOD_H | #ifndef _FMOD_H | |||
#include "fmod.h" | #include "fmod.h" | |||
#endif | #endif | |||
/* | /* | |||
FMOD EventSystem version number. Check this against FMOD::EventSystem: :getVersion. | FMOD EventSystem version number. Check this against FMOD::EventSystem: :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_EVENT_VERSION 0x00043703 | #define FMOD_EVENT_VERSION 0x00043704 | |||
/* | /* | |||
FMOD event types | FMOD event types | |||
*/ | */ | |||
typedef struct FMOD_EVENTSYSTEM FMOD_EVENTSYSTEM; | typedef struct FMOD_EVENTSYSTEM FMOD_EVENTSYSTEM; | |||
typedef struct FMOD_EVENTPROJECT FMOD_EVENTPROJECT; | typedef struct FMOD_EVENTPROJECT FMOD_EVENTPROJECT; | |||
typedef struct FMOD_EVENTGROUP FMOD_EVENTGROUP; | typedef struct FMOD_EVENTGROUP FMOD_EVENTGROUP; | |||
typedef struct FMOD_EVENTCATEGORY FMOD_EVENTCATEGORY; | typedef struct FMOD_EVENTCATEGORY FMOD_EVENTCATEGORY; | |||
typedef struct FMOD_EVENT FMOD_EVENT; | typedef struct FMOD_EVENT FMOD_EVENT; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
fmod_event_net.h | fmod_event_net.h | |||
---|---|---|---|---|
skipping to change at line 21 | skipping to change at line 21 | |||
#define __FMOD_EVENT_NET_H__ | #define __FMOD_EVENT_NET_H__ | |||
#ifndef __FMOD_EVENT_H__ | #ifndef __FMOD_EVENT_H__ | |||
#include "fmod_event.h" | #include "fmod_event.h" | |||
#endif | #endif | |||
/* | /* | |||
FMOD NetEventSystem version number. Check this against NetEventSystem_ GetVersion. | FMOD NetEventSystem version number. Check this against NetEventSystem_ 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_EVENT_NET_VERSION 0x00043703 | #define FMOD_EVENT_NET_VERSION 0x00043704 | |||
/* | /* | |||
Default port that the target (game) will listen on | Default port that the target (game) will listen on | |||
*/ | */ | |||
#define FMOD_EVENT_NET_PORT 17997 | #define FMOD_EVENT_NET_PORT 17997 | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" | extern "C" | |||
{ | { | |||
#endif | #endif | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||