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 0x00043302 | #define FMOD_VERSION 0x00043303 | |||
/* | /* | |||
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 481 | skipping to change at line 481 | |||
FMOD_MEMORY_ALLOCCALLBACK | FMOD_MEMORY_ALLOCCALLBACK | |||
FMOD_MEMORY_REALLOCCALLBACK | FMOD_MEMORY_REALLOCCALLBACK | |||
FMOD_MEMORY_FREECALLBACK | FMOD_MEMORY_FREECALLBACK | |||
Memory_Initialize | Memory_Initialize | |||
] | ] | |||
*/ | */ | |||
#define FMOD_MEMORY_NORMAL 0x00000000 /* Standard memory. */ | #define FMOD_MEMORY_NORMAL 0x00000000 /* Standard memory. */ | |||
#define FMOD_MEMORY_STREAM_FILE 0x00000001 /* Stream file buff er, size controllable with System::setStreamBufferSize. */ | #define FMOD_MEMORY_STREAM_FILE 0x00000001 /* Stream file buff er, size controllable with System::setStreamBufferSize. */ | |||
#define FMOD_MEMORY_STREAM_DECODE 0x00000002 /* Stream decode bu ffer, size controllable with FMOD_CREATESOUNDEXINFO::decodebuffersize. */ | #define FMOD_MEMORY_STREAM_DECODE 0x00000002 /* Stream decode bu ffer, size controllable with FMOD_CREATESOUNDEXINFO::decodebuffersize. */ | |||
#define FMOD_MEMORY_SAMPLEDATA 0x00000004 /* Sample data buff er. Raw audio data, usually PCM/MPEG/ADPCM/XMA data. */ | ||||
#define FMOD_MEMORY_XBOX360_PHYSICAL 0x00100000 /* Requires XPhysic alAlloc / XPhysicalFree. */ | #define FMOD_MEMORY_XBOX360_PHYSICAL 0x00100000 /* Requires XPhysic alAlloc / XPhysicalFree. */ | |||
#define FMOD_MEMORY_PERSISTENT 0x00200000 /* Persistent memor y. Memory will be freed when System::release is called. */ | #define FMOD_MEMORY_PERSISTENT 0x00200000 /* Persistent memor y. Memory will be freed when System::release is called. */ | |||
#define FMOD_MEMORY_SECONDARY 0x00400000 /* Secondary memory . Allocation should be in secondary memory. For example RSX on the PS3. */ | #define FMOD_MEMORY_SECONDARY 0x00400000 /* Secondary memory . Allocation should be in secondary memory. For example RSX on the PS3. */ | |||
#define FMOD_MEMORY_ALL 0xFFFFFFFF | #define FMOD_MEMORY_ALL 0xFFFFFFFF | |||
/* [DEFINE_END] */ | /* [DEFINE_END] */ | |||
/* | /* | |||
[ENUM] | [ENUM] | |||
[ | [ | |||
[DESCRIPTION] | [DESCRIPTION] | |||
End of changes. 2 change blocks. | ||||
1 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 0x00043302 | #define FMOD_EVENT_VERSION 0x00043303 | |||
/* | /* | |||
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 0x00043302 | #define FMOD_EVENT_NET_VERSION 0x00043303 | |||
/* | /* | |||
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 | |||