Guest User

fmod.h 4.44.06

a guest
Feb 11th, 2013
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 166.05 KB | None | 0 0
  1.  
  2. /* ============================================================================================ */
  3. /* FMOD Ex - Main C/C++ header file. Copyright (c), Firelight Technologies Pty, Ltd. 2004-2011. */
  4. /*                                                                                              */
  5. /* This header is the base header for all other FMOD headers.  If you are programming in C      */
  6. /* use this exclusively, or if you are programming C++ use this in conjunction with FMOD.HPP    */
  7. /*                                                                                              */
  8. /* ============================================================================================ */
  9.  
  10. #ifndef _FMOD_H
  11. #define _FMOD_H
  12.  
  13. /*
  14.     FMOD version number.  Check this against FMOD::System::getVersion.
  15.     0xaaaabbcc -> aaaa = major version number.  bb = minor version number.  cc = development version number.
  16. */
  17.  
  18. #define FMOD_VERSION    0x00044406
  19.  
  20. /*
  21.     Compiler specific settings.
  22. */
  23.  
  24. #if defined(__CYGWIN32__)
  25.     #define F_CDECL __cdecl
  26.     #define F_STDCALL __stdcall
  27.     #define F_DECLSPEC __declspec
  28.     #define F_DLLEXPORT ( dllexport )
  29. #elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(_WIN64)
  30.     #define F_CDECL _cdecl
  31.     #define F_STDCALL _stdcall
  32.     #define F_DECLSPEC __declspec
  33.     #define F_DLLEXPORT ( dllexport )
  34. #elif defined(__MACH__) || defined(__ANDROID__) || defined(__linux__) || defined(__QNX__)
  35.     #define F_CDECL
  36.     #define F_STDCALL
  37.     #define F_DECLSPEC
  38.     #define F_DLLEXPORT __attribute__ ((visibility("default")))
  39. #else
  40.     #define F_CDECL
  41.     #define F_STDCALL
  42.     #define F_DECLSPEC
  43.     #define F_DLLEXPORT
  44. #endif
  45.  
  46. #ifdef DLL_EXPORTS
  47.     #if defined(__MACH__) || defined(__ANDROID__) || defined(__linux__) || defined(__QNX__)
  48.         #define F_API __attribute__ ((visibility("default")))
  49.     #else
  50.         #define F_API __declspec(dllexport) F_STDCALL
  51.     #endif
  52. #else
  53.     #define F_API F_STDCALL
  54. #endif
  55.  
  56. #define F_CALLBACK F_STDCALL
  57.  
  58. /*
  59.     FMOD types.
  60. */
  61.  
  62. typedef int                       FMOD_BOOL;
  63. typedef struct FMOD_SYSTEM        FMOD_SYSTEM;
  64. typedef struct FMOD_SOUND         FMOD_SOUND;
  65. typedef struct FMOD_CHANNEL       FMOD_CHANNEL;
  66. typedef struct FMOD_CHANNELGROUP  FMOD_CHANNELGROUP;
  67. typedef struct FMOD_SOUNDGROUP    FMOD_SOUNDGROUP;
  68. typedef struct FMOD_REVERB        FMOD_REVERB;
  69. typedef struct FMOD_DSP           FMOD_DSP;
  70. typedef struct FMOD_DSPCONNECTION FMOD_DSPCONNECTION;
  71. typedef struct FMOD_POLYGON       FMOD_POLYGON;
  72. typedef struct FMOD_GEOMETRY      FMOD_GEOMETRY;
  73. typedef struct FMOD_SYNCPOINT     FMOD_SYNCPOINT;
  74. typedef unsigned int              FMOD_MODE;
  75. typedef unsigned int              FMOD_TIMEUNIT;
  76. typedef unsigned int              FMOD_INITFLAGS;
  77. typedef unsigned int              FMOD_CAPS;
  78. typedef unsigned int              FMOD_DEBUGLEVEL;
  79. typedef unsigned int              FMOD_MEMORY_TYPE;
  80.  
  81. /*
  82. [ENUM]
  83. [
  84.     [DESCRIPTION]  
  85.     error codes.  Returned from every function.
  86.  
  87.     [REMARKS]
  88.  
  89.     [PLATFORMS]
  90.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  91.  
  92.     [SEE_ALSO]      
  93. ]
  94. */
  95. typedef enum
  96. {
  97.     FMOD_OK,                        /* No errors. */
  98.     FMOD_ERR_ALREADYLOCKED,         /* Tried to call lock a second time before unlock was called. */
  99.     FMOD_ERR_BADCOMMAND,            /* Tried to call a function on a data type that does not allow this type of functionality (ie calling Sound::lock on a streaming sound). */
  100.     FMOD_ERR_CDDA_DRIVERS,          /* Neither NTSCSI nor ASPI could be initialised. */
  101.     FMOD_ERR_CDDA_INIT,             /* An error occurred while initialising the CDDA subsystem. */
  102.     FMOD_ERR_CDDA_INVALID_DEVICE,   /* Couldn't find the specified device. */
  103.     FMOD_ERR_CDDA_NOAUDIO,          /* No audio tracks on the specified disc. */
  104.     FMOD_ERR_CDDA_NODEVICES,        /* No CD/DVD devices were found. */
  105.     FMOD_ERR_CDDA_NODISC,           /* No disc present in the specified drive. */
  106.     FMOD_ERR_CDDA_READ,             /* A CDDA read error occurred. */
  107.     FMOD_ERR_CHANNEL_ALLOC,         /* Error trying to allocate a channel. */
  108.     FMOD_ERR_CHANNEL_STOLEN,        /* The specified channel has been reused to play another sound. */
  109.     FMOD_ERR_COM,                   /* A Win32 COM related error occured. COM failed to initialize or a QueryInterface failed meaning a Windows codec or driver was not installed properly. */
  110.     FMOD_ERR_DMA,                   /* DMA Failure.  See debug output for more information. */
  111.     FMOD_ERR_DSP_CONNECTION,        /* DSP connection error.  Connection possibly caused a cyclic dependancy.  Or tried to connect a tree too many units deep (more than 128). */
  112.     FMOD_ERR_DSP_FORMAT,            /* DSP Format error.  A DSP unit may have attempted to connect to this network with the wrong format. */
  113.     FMOD_ERR_DSP_NOTFOUND,          /* DSP connection error.  Couldn't find the DSP unit specified. */
  114.     FMOD_ERR_DSP_RUNNING,           /* DSP error.  Cannot perform this operation while the network is in the middle of running.  This will most likely happen if a connection or disconnection is attempted in a DSP callback. */
  115.     FMOD_ERR_DSP_TOOMANYCONNECTIONS,/* DSP connection error.  The unit being connected to or disconnected should only have 1 input or output. */
  116.     FMOD_ERR_FILE_BAD,              /* Error loading file. */
  117.     FMOD_ERR_FILE_COULDNOTSEEK,     /* Couldn't perform seek operation.  This is a limitation of the medium (ie netstreams) or the file format. */
  118.     FMOD_ERR_FILE_DISKEJECTED,      /* Media was ejected while reading. */
  119.     FMOD_ERR_FILE_EOF,              /* End of file unexpectedly reached while trying to read essential data (truncated data?). */
  120.     FMOD_ERR_FILE_NOTFOUND,         /* File not found. */
  121.     FMOD_ERR_FILE_UNWANTED,         /* Unwanted file access occured. */
  122.     FMOD_ERR_FORMAT,                /* Unsupported file or audio format. */
  123.     FMOD_ERR_HTTP,                  /* A HTTP error occurred. This is a catch-all for HTTP errors not listed elsewhere. */
  124.     FMOD_ERR_HTTP_ACCESS,           /* The specified resource requires authentication or is forbidden. */
  125.     FMOD_ERR_HTTP_PROXY_AUTH,       /* Proxy authentication is required to access the specified resource. */
  126.     FMOD_ERR_HTTP_SERVER_ERROR,     /* A HTTP server error occurred. */
  127.     FMOD_ERR_HTTP_TIMEOUT,          /* The HTTP request timed out. */
  128.     FMOD_ERR_INITIALIZATION,        /* FMOD was not initialized correctly to support this function. */
  129.     FMOD_ERR_INITIALIZED,           /* Cannot call this command after System::init. */
  130.     FMOD_ERR_INTERNAL,              /* An error occured that wasn't supposed to.  Contact support. */
  131.     FMOD_ERR_INVALID_ADDRESS,       /* On Xbox 360, this memory address passed to FMOD must be physical, (ie allocated with XPhysicalAlloc.) */
  132.     FMOD_ERR_INVALID_FLOAT,         /* Value passed in was a NaN, Inf or denormalized float. */
  133.     FMOD_ERR_INVALID_HANDLE,        /* An invalid object handle was used. */
  134.     FMOD_ERR_INVALID_PARAM,         /* An invalid parameter was passed to this function. */
  135.     FMOD_ERR_INVALID_POSITION,      /* An invalid seek position was passed to this function. */
  136.     FMOD_ERR_INVALID_SPEAKER,       /* An invalid speaker was passed to this function based on the current speaker mode. */
  137.     FMOD_ERR_INVALID_SYNCPOINT,     /* The syncpoint did not come from this sound handle. */
  138.     FMOD_ERR_INVALID_VECTOR,        /* The vectors passed in are not unit length, or perpendicular. */
  139.     FMOD_ERR_MAXAUDIBLE,            /* Reached maximum audible playback count for this sound's soundgroup. */
  140.     FMOD_ERR_MEMORY,                /* Not enough memory or resources. */
  141.     FMOD_ERR_MEMORY_CANTPOINT,      /* Can't use FMOD_OPENMEMORY_POINT on non PCM source data, or non mp3/xma/adpcm data if FMOD_CREATECOMPRESSEDSAMPLE was used. */
  142.     FMOD_ERR_MEMORY_SRAM,           /* Not enough memory or resources on console sound ram. */
  143.     FMOD_ERR_NEEDS2D,               /* Tried to call a command on a 3d sound when the command was meant for 2d sound. */
  144.     FMOD_ERR_NEEDS3D,               /* Tried to call a command on a 2d sound when the command was meant for 3d sound. */
  145.     FMOD_ERR_NEEDSHARDWARE,         /* Tried to use a feature that requires hardware support.  (ie trying to play a GCADPCM compressed sound in software on Wii). */
  146.     FMOD_ERR_NEEDSSOFTWARE,         /* Tried to use a feature that requires the software engine.  Software engine has either been turned off, or command was executed on a hardware channel which does not support this feature. */
  147.     FMOD_ERR_NET_CONNECT,           /* Couldn't connect to the specified host. */
  148.     FMOD_ERR_NET_SOCKET_ERROR,      /* A socket error occurred.  This is a catch-all for socket-related errors not listed elsewhere. */
  149.     FMOD_ERR_NET_URL,               /* The specified URL couldn't be resolved. */
  150.     FMOD_ERR_NET_WOULD_BLOCK,       /* Operation on a non-blocking socket could not complete immediately. */
  151.     FMOD_ERR_NOTREADY,              /* Operation could not be performed because specified sound/DSP connection is not ready. */
  152.     FMOD_ERR_OUTPUT_ALLOCATED,      /* Error initializing output device, but more specifically, the output device is already in use and cannot be reused. */
  153.     FMOD_ERR_OUTPUT_CREATEBUFFER,   /* Error creating hardware sound buffer. */
  154.     FMOD_ERR_OUTPUT_DRIVERCALL,     /* A call to a standard soundcard driver failed, which could possibly mean a bug in the driver or resources were missing or exhausted. */
  155.     FMOD_ERR_OUTPUT_ENUMERATION,    /* Error enumerating the available driver list. List may be inconsistent due to a recent device addition or removal. */
  156.     FMOD_ERR_OUTPUT_FORMAT,         /* Soundcard does not support the minimum features needed for this soundsystem (16bit stereo output). */
  157.     FMOD_ERR_OUTPUT_INIT,           /* Error initializing output device. */
  158.     FMOD_ERR_OUTPUT_NOHARDWARE,     /* FMOD_HARDWARE was specified but the sound card does not have the resources necessary to play it. */
  159.     FMOD_ERR_OUTPUT_NOSOFTWARE,     /* Attempted to create a software sound but no software channels were specified in System::init. */
  160.     FMOD_ERR_PAN,                   /* Panning only works with mono or stereo sound sources. */
  161.     FMOD_ERR_PLUGIN,                /* An unspecified error has been returned from a 3rd party plugin. */
  162.     FMOD_ERR_PLUGIN_INSTANCES,      /* The number of allowed instances of a plugin has been exceeded. */
  163.     FMOD_ERR_PLUGIN_MISSING,        /* A requested output, dsp unit type or codec was not available. */
  164.     FMOD_ERR_PLUGIN_RESOURCE,       /* A resource that the plugin requires cannot be found. (ie the DLS file for MIDI playback) */
  165.     FMOD_ERR_PRELOADED,             /* The specified sound is still in use by the event system, call EventSystem::unloadFSB before trying to release it. */
  166.     FMOD_ERR_PROGRAMMERSOUND,       /* The specified sound is still in use by the event system, wait for the event which is using it finish with it. */
  167.     FMOD_ERR_RECORD,                /* An error occured trying to initialize the recording device. */
  168.     FMOD_ERR_REVERB_INSTANCE,       /* Specified instance in FMOD_REVERB_PROPERTIES couldn't be set. Most likely because it is an invalid instance number or the reverb doesnt exist. */
  169.     FMOD_ERR_SUBSOUND_ALLOCATED,    /* This subsound is already being used by another sound, you cannot have more than one parent to a sound.  Null out the other parent's entry first. */
  170.     FMOD_ERR_SUBSOUND_CANTMOVE,     /* Shared subsounds cannot be replaced or moved from their parent stream, such as when the parent stream is an FSB file. */
  171.     FMOD_ERR_SUBSOUND_MODE,         /* The subsound's mode bits do not match with the parent sound's mode bits.  See documentation for function that it was called with. */
  172.     FMOD_ERR_SUBSOUNDS,             /* The error occured because the sound referenced contains subsounds when it shouldn't have, or it doesn't contain subsounds when it should have.  The operation may also not be able to be performed on a parent sound, or a parent sound was played without setting up a sentence first. */
  173.     FMOD_ERR_TAGNOTFOUND,           /* The specified tag could not be found or there are no tags. */
  174.     FMOD_ERR_TOOMANYCHANNELS,       /* The sound created exceeds the allowable input channel count.  This can be increased using the maxinputchannels parameter in System::setSoftwareFormat. */
  175.     FMOD_ERR_UNIMPLEMENTED,         /* Something in FMOD hasn't been implemented when it should be! contact support! */
  176.     FMOD_ERR_UNINITIALIZED,         /* This command failed because System::init or System::setDriver was not called. */
  177.     FMOD_ERR_UNSUPPORTED,           /* A command issued was not supported by this object.  Possibly a plugin without certain callbacks specified. */
  178.     FMOD_ERR_UPDATE,                /* An error caused by System::update occured. */
  179.     FMOD_ERR_VERSION,               /* The version number of this file format is not supported. */
  180.  
  181.     FMOD_ERR_EVENT_FAILED,          /* An Event failed to be retrieved, most likely due to 'just fail' being specified as the max playbacks behavior. */
  182.     FMOD_ERR_EVENT_INFOONLY,        /* Can't execute this command on an EVENT_INFOONLY event. */
  183.     FMOD_ERR_EVENT_INTERNAL,        /* An error occured that wasn't supposed to.  See debug log for reason. */
  184.     FMOD_ERR_EVENT_MAXSTREAMS,      /* Event failed because 'Max streams' was hit when FMOD_EVENT_INIT_FAIL_ON_MAXSTREAMS was specified. */
  185.     FMOD_ERR_EVENT_MISMATCH,        /* FSB mismatches the FEV it was compiled with, the stream/sample mode it was meant to be created with was different, or the FEV was built for a different platform. */
  186.     FMOD_ERR_EVENT_NAMECONFLICT,    /* A category with the same name already exists. */
  187.     FMOD_ERR_EVENT_NOTFOUND,        /* The requested event, event group, event category or event property could not be found. */
  188.     FMOD_ERR_EVENT_NEEDSSIMPLE,     /* Tried to call a function on a complex event that's only supported by simple events. */
  189.     FMOD_ERR_EVENT_GUIDCONFLICT,    /* An event with the same GUID already exists. */
  190.     FMOD_ERR_EVENT_ALREADY_LOADED,  /* The specified project or bank has already been loaded. Having multiple copies of the same project loaded simultaneously is forbidden. */
  191.  
  192.     FMOD_ERR_MUSIC_UNINITIALIZED,   /* Music system is not initialized probably because no music data is loaded. */
  193.     FMOD_ERR_MUSIC_NOTFOUND,        /* The requested music entity could not be found. */
  194.     FMOD_ERR_MUSIC_NOCALLBACK,      /* The music callback is required, but it has not been set. */
  195.  
  196.     FMOD_RESULT_FORCEINT = 65536    /* Makes sure this enum is signed 32bit. */
  197. } FMOD_RESULT;
  198.  
  199.  
  200. /*
  201. [STRUCTURE]
  202. [
  203.     [DESCRIPTION]  
  204.     Structure describing a point in 3D space.
  205.  
  206.     [REMARKS]
  207.     FMOD uses a left handed co-ordinate system by default.
  208.     To use a right handed co-ordinate system specify FMOD_INIT_3D_RIGHTHANDED from FMOD_INITFLAGS in System::init.
  209.  
  210.     [PLATFORMS]
  211.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  212.  
  213.     [SEE_ALSO]      
  214.     System::set3DListenerAttributes
  215.     System::get3DListenerAttributes
  216.     Channel::set3DAttributes
  217.     Channel::get3DAttributes
  218.     Channel::set3DCustomRolloff
  219.     Channel::get3DCustomRolloff
  220.     Sound::set3DCustomRolloff
  221.     Sound::get3DCustomRolloff
  222.     Geometry::addPolygon
  223.     Geometry::setPolygonVertex
  224.     Geometry::getPolygonVertex
  225.     Geometry::setRotation
  226.     Geometry::getRotation
  227.     Geometry::setPosition
  228.     Geometry::getPosition
  229.     Geometry::setScale
  230.     Geometry::getScale
  231.     FMOD_INITFLAGS
  232. ]
  233. */
  234. typedef struct
  235. {
  236.     float x;        /* X co-ordinate in 3D space. */
  237.     float y;        /* Y co-ordinate in 3D space. */
  238.     float z;        /* Z co-ordinate in 3D space. */
  239. } FMOD_VECTOR;
  240.  
  241. /*
  242. [STRUCTURE]
  243. [
  244.     [DESCRIPTION]  
  245.     Structure describing a globally unique identifier.
  246.  
  247.     [REMARKS]
  248.  
  249.     [PLATFORMS]
  250.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  251.  
  252.     [SEE_ALSO]      
  253.     System::getDriverInfo
  254. ]
  255. */
  256. typedef struct
  257. {
  258.     unsigned int   Data1;       /* Specifies the first 8 hexadecimal digits of the GUID */
  259.     unsigned short Data2;       /* Specifies the first group of 4 hexadecimal digits.   */
  260.     unsigned short Data3;       /* Specifies the second group of 4 hexadecimal digits.  */
  261.     unsigned char  Data4[8];    /* Array of 8 bytes. The first 2 bytes contain the third group of 4 hexadecimal digits. The remaining 6 bytes contain the final 12 hexadecimal digits. */
  262. } FMOD_GUID;
  263.  
  264. /*
  265. [STRUCTURE]
  266. [
  267.     [DESCRIPTION]
  268.     Structure that is passed into FMOD_FILE_ASYNCREADCALLBACK.  Use the information in this structure to perform
  269.  
  270.     [REMARKS]
  271.     Members marked with [r] mean the variable is modified by FMOD and is for reading purposes only.  Do not change this value.
  272.     Members marked with [w] mean the variable can be written to.  The user can set the value.
  273.    
  274.     Instructions: write to 'buffer', and 'bytesread' <b>BEFORE</b> setting 'result'.  
  275.     As soon as result is set, FMOD will asynchronously continue internally using the data provided in this structure.
  276.    
  277.     Set 'result' to the result expected from a normal file read callback.
  278.     If the read was successful, set it to FMOD_OK.
  279.     If it read some data but hit the end of the file, set it to FMOD_ERR_FILE_EOF.
  280.     If a bad error occurred, return FMOD_ERR_FILE_BAD
  281.     If a disk was ejected, return FMOD_ERR_FILE_DISKEJECTED.
  282.  
  283.     [PLATFORMS]
  284.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  285.  
  286.     [SEE_ALSO]
  287.     FMOD_FILE_ASYNCREADCALLBACK
  288.     FMOD_FILE_ASYNCCANCELCALLBACK
  289. ]
  290. */
  291. typedef struct
  292. {
  293.     void           *handle;         /* [r] The file handle that was filled out in the open callback. */
  294.     unsigned int    offset;         /* [r] Seek position, make sure you read from this file offset. */
  295.     unsigned int    sizebytes;      /* [r] how many bytes requested for read. */
  296.     int             priority;       /* [r] 0 = low importance.  100 = extremely important (ie 'must read now or stuttering may occur') */
  297.  
  298.     void           *buffer;         /* [w] Buffer to read file data into. */
  299.     unsigned int    bytesread;      /* [w] Fill this in before setting result code to tell FMOD how many bytes were read. */
  300.     FMOD_RESULT     result;         /* [r/w] Result code, FMOD_OK tells the system it is ready to consume the data.  Set this last!  Default value = FMOD_ERR_NOTREADY. */
  301.  
  302.     void           *userdata;       /* [r] User data pointer. */
  303. } FMOD_ASYNCREADINFO;
  304.  
  305.  
  306. /*
  307. [ENUM]
  308. [
  309.     [DESCRIPTION]  
  310.     These output types are used with System::setOutput / System::getOutput, to choose which output method to use.
  311.  
  312.     [REMARKS]
  313.     To pass information to the driver when initializing fmod use the extradriverdata parameter in System::init for the following reasons.
  314.     - FMOD_OUTPUTTYPE_WAVWRITER - extradriverdata is a pointer to a char * filename that the wav writer will output to.
  315.     - FMOD_OUTPUTTYPE_WAVWRITER_NRT - extradriverdata is a pointer to a char * filename that the wav writer will output to.
  316.     - FMOD_OUTPUTTYPE_DSOUND - extradriverdata is a pointer to a HWND so that FMOD can set the focus on the audio for a particular window.
  317.     - FMOD_OUTPUTTYPE_PS3 - extradriverdata is a pointer to a FMOD_PS3_EXTRADRIVERDATA struct. This can be found in fmodps3.h.
  318.     - FMOD_OUTPUTTYPE_GC - extradriverdata is a pointer to a FMOD_GC_INFO struct. This can be found in fmodgc.h.
  319.     - FMOD_OUTPUTTYPE_WII - extradriverdata is a pointer to a FMOD_WII_INFO struct. This can be found in fmodwii.h.
  320.     - FMOD_OUTPUTTYPE_ALSA - extradriverdata is a pointer to a FMOD_LINUX_EXTRADRIVERDATA struct. This can be found in fmodlinux.h.
  321.    
  322.     Currently these are the only FMOD drivers that take extra information.  Other unknown plugins may have different requirements.
  323.    
  324.     Note! If FMOD_OUTPUTTYPE_WAVWRITER_NRT or FMOD_OUTPUTTYPE_NOSOUND_NRT are used, and if the System::update function is being called
  325.     very quickly (ie for a non realtime decode) it may be being called too quickly for the FMOD streamer thread to respond to.  
  326.     The result will be a skipping/stuttering output in the captured audio.
  327.    
  328.     To remedy this, disable the FMOD Ex streamer thread, and use FMOD_INIT_STREAM_FROM_UPDATE to avoid skipping in the output stream,
  329.     as it will lock the mixer and the streamer together in the same thread.
  330.  
  331.     [PLATFORMS]
  332.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  333.  
  334.     [SEE_ALSO]      
  335.     System::setOutput
  336.     System::getOutput
  337.     System::setSoftwareFormat
  338.     System::getSoftwareFormat
  339.     System::init
  340.     System::update
  341.     FMOD_INITFLAGS
  342. ]
  343. */
  344. typedef enum
  345. {
  346.     FMOD_OUTPUTTYPE_AUTODETECT,      /* Picks the best output mode for the platform.  This is the default. */
  347.                                      
  348.     FMOD_OUTPUTTYPE_UNKNOWN,         /* All             - 3rd party plugin, unknown.  This is for use with System::getOutput only. */
  349.     FMOD_OUTPUTTYPE_NOSOUND,         /* All             - All calls in this mode succeed but make no sound. */
  350.     FMOD_OUTPUTTYPE_WAVWRITER,       /* All             - Writes output to fmodoutput.wav by default.  Use the 'extradriverdata' parameter in System::init, by simply passing the filename as a string, to set the wav filename. */
  351.     FMOD_OUTPUTTYPE_NOSOUND_NRT,     /* All             - Non-realtime version of FMOD_OUTPUTTYPE_NOSOUND.  User can drive mixer with System::update at whatever rate they want. */
  352.     FMOD_OUTPUTTYPE_WAVWRITER_NRT,   /* All             - Non-realtime version of FMOD_OUTPUTTYPE_WAVWRITER.  User can drive mixer with System::update at whatever rate they want. */
  353.                                      
  354.     FMOD_OUTPUTTYPE_DSOUND,          /* Win32/Win64     - DirectSound output.                       (Default on Windows XP and below) */
  355.     FMOD_OUTPUTTYPE_WINMM,           /* Win32/Win64     - Windows Multimedia output. */
  356.     FMOD_OUTPUTTYPE_WASAPI,          /* Win32           - Windows Audio Session API.                (Default on Windows Vista and above) */
  357.     FMOD_OUTPUTTYPE_ASIO,            /* Win32           - Low latency ASIO 2.0 driver. */
  358.     FMOD_OUTPUTTYPE_OSS,             /* Linux/Linux64   - Open Sound System output.                 (Default on Linux, third preference) */
  359.     FMOD_OUTPUTTYPE_ALSA,            /* Linux/Linux64   - Advanced Linux Sound Architecture output. (Default on Linux, second preference if available) */
  360.     FMOD_OUTPUTTYPE_ESD,             /* Linux/Linux64   - Enlightment Sound Daemon output. */
  361.     FMOD_OUTPUTTYPE_PULSEAUDIO,      /* Linux/Linux64   - PulseAudio output.                        (Default on Linux, first preference if available) */
  362.     FMOD_OUTPUTTYPE_COREAUDIO,       /* Mac             - Macintosh CoreAudio output.               (Default on Mac) */
  363.     FMOD_OUTPUTTYPE_XBOX360,         /* Xbox 360        - Native Xbox360 output.                    (Default on Xbox 360) */
  364.     FMOD_OUTPUTTYPE_PSP,             /* PSP             - Native PSP output.                        (Default on PSP) */
  365.     FMOD_OUTPUTTYPE_PS3,             /* PS3             - Native PS3 output.                        (Default on PS3) */
  366.     FMOD_OUTPUTTYPE_NGP,             /* NGP             - Native NGP output.                        (Default on NGP) */
  367.     FMOD_OUTPUTTYPE_WII,             /* Wii             - Native Wii output.                        (Default on Wii) */
  368.     FMOD_OUTPUTTYPE_3DS,             /* 3DS             - Native 3DS output                         (Default on 3DS) */
  369.     FMOD_OUTPUTTYPE_AUDIOTRACK,      /* Android         - Java Audio Track output.                  (Default on Android 2.2 and below) */
  370.     FMOD_OUTPUTTYPE_OPENSL,          /* Android         - OpenSL ES output.                         (Default on Android 2.3 and above) */  
  371.     FMOD_OUTPUTTYPE_NACL,            /* Native Client   - Native Client output.                     (Default on Native Client) */
  372.     FMOD_OUTPUTTYPE_WIIU,            /* Wii U           - Native Wii U output.                      (Default on Wii U) */
  373.     FMOD_OUTPUTTYPE_ASOUND,          /* BlackBerry      - Native BlackBerry asound output.          (Default on BlackBerry) */
  374.  
  375.     FMOD_OUTPUTTYPE_MAX,             /* Maximum number of output types supported. */
  376.     FMOD_OUTPUTTYPE_FORCEINT = 65536 /* Makes sure this enum is signed 32bit. */
  377. } FMOD_OUTPUTTYPE;
  378.  
  379.  
  380. /*
  381. [DEFINE]
  382. [
  383.     [NAME]
  384.     FMOD_CAPS
  385.  
  386.     [DESCRIPTION]  
  387.     Bit fields to use with System::getDriverCaps to determine the capabilities of a card / output device.
  388.  
  389.     [REMARKS]
  390.     It is important to check FMOD_CAPS_HARDWARE_EMULATED on windows machines, to then adjust System::setDSPBufferSize to (1024, 10) to compensate for the higher latency.
  391.  
  392.     [PLATFORMS]
  393.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  394.  
  395.     [SEE_ALSO]
  396.     System::getDriverCaps
  397.     System::setDSPBufferSize
  398. ]
  399. */
  400. #define FMOD_CAPS_NONE                   0x00000000  /* Device has no special capabilities. */
  401. #define FMOD_CAPS_HARDWARE               0x00000001  /* Device supports hardware mixing. */
  402. #define FMOD_CAPS_HARDWARE_EMULATED      0x00000002  /* User has device set to 'Hardware acceleration = off' in control panel, and now extra 200ms latency is incurred. */
  403. #define FMOD_CAPS_OUTPUT_MULTICHANNEL    0x00000004  /* Device can do multichannel output, ie greater than 2 channels. */
  404. #define FMOD_CAPS_OUTPUT_FORMAT_PCM8     0x00000008  /* Device can output to 8bit integer PCM. */
  405. #define FMOD_CAPS_OUTPUT_FORMAT_PCM16    0x00000010  /* Device can output to 16bit integer PCM. */
  406. #define FMOD_CAPS_OUTPUT_FORMAT_PCM24    0x00000020  /* Device can output to 24bit integer PCM. */
  407. #define FMOD_CAPS_OUTPUT_FORMAT_PCM32    0x00000040  /* Device can output to 32bit integer PCM. */
  408. #define FMOD_CAPS_OUTPUT_FORMAT_PCMFLOAT 0x00000080  /* Device can output to 32bit floating point PCM. */
  409. #define FMOD_CAPS_REVERB_LIMITED         0x00002000  /* Device supports some form of limited hardware reverb, maybe parameterless and only selectable by environment. */
  410. #define FMOD_CAPS_LOOPBACK               0x00004000  /* Device is a loopback recording device */
  411. /* [DEFINE_END] */
  412.  
  413. /*
  414. [DEFINE]
  415. [
  416.     [NAME]
  417.     FMOD_DEBUGLEVEL
  418.  
  419.     [DESCRIPTION]  
  420.     Bit fields to use with FMOD::Debug_SetLevel / FMOD::Debug_GetLevel to control the level of tty debug output with logging versions of FMOD (fmodL).
  421.  
  422.     [REMARKS]
  423.  
  424.     [PLATFORMS]
  425.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  426.  
  427.     [SEE_ALSO]
  428.     Debug_SetLevel
  429.     Debug_GetLevel
  430. ]
  431. */
  432. #define FMOD_DEBUG_LEVEL_NONE           0x00000000
  433. #define FMOD_DEBUG_LEVEL_LOG            0x00000001      /* Will display generic logging messages. */
  434. #define FMOD_DEBUG_LEVEL_ERROR          0x00000002      /* Will display errors. */
  435. #define FMOD_DEBUG_LEVEL_WARNING        0x00000004      /* Will display warnings that are not fatal. */
  436. #define FMOD_DEBUG_LEVEL_HINT           0x00000008      /* Will hint to you if there is something possibly better you could be doing. */
  437. #define FMOD_DEBUG_LEVEL_ALL            0x000000FF    
  438. #define FMOD_DEBUG_TYPE_MEMORY          0x00000100      /* Show FMOD memory related logging messages. */
  439. #define FMOD_DEBUG_TYPE_THREAD          0x00000200      /* Show FMOD thread related logging messages. */
  440. #define FMOD_DEBUG_TYPE_FILE            0x00000400      /* Show FMOD file system related logging messages. */
  441. #define FMOD_DEBUG_TYPE_NET             0x00000800      /* Show FMOD network related logging messages. */
  442. #define FMOD_DEBUG_TYPE_EVENT           0x00001000      /* Show FMOD Event related logging messages. */
  443. #define FMOD_DEBUG_TYPE_ALL             0x0000FFFF                      
  444. #define FMOD_DEBUG_DISPLAY_TIMESTAMPS   0x01000000      /* Display the timestamp of the log entry in milliseconds. */
  445. #define FMOD_DEBUG_DISPLAY_LINENUMBERS  0x02000000      /* Display the FMOD Ex source code line numbers, for debugging purposes. */
  446. #define FMOD_DEBUG_DISPLAY_COMPRESS     0x04000000      /* If a message is repeated more than 5 times it will stop displaying it and instead display the number of times the message was logged. */
  447. #define FMOD_DEBUG_DISPLAY_THREAD       0x08000000      /* Display the thread ID of the calling function that caused this log entry to appear. */
  448. #define FMOD_DEBUG_DISPLAY_ALL          0x0F000000
  449. #define FMOD_DEBUG_ALL                  0xFFFFFFFF
  450. /* [DEFINE_END] */
  451.  
  452.  
  453. /*
  454. [DEFINE]
  455. [
  456.     [NAME]
  457.     FMOD_MEMORY_TYPE
  458.  
  459.     [DESCRIPTION]  
  460.     Bit fields for memory allocation type being passed into FMOD memory callbacks.
  461.  
  462.     [REMARKS]
  463.     Remember this is a bitfield.  You may get more than 1 bit set (ie physical + persistent) so do not simply switch on the types!  You must check each bit individually or clear out the bits that you do not want within the callback.
  464.     Bits can be excluded if you want during Memory_Initialize so that you never get them.
  465.  
  466.     [PLATFORMS]
  467.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  468.  
  469.     [SEE_ALSO]
  470.     FMOD_MEMORY_ALLOCCALLBACK
  471.     FMOD_MEMORY_REALLOCCALLBACK
  472.     FMOD_MEMORY_FREECALLBACK
  473.     Memory_Initialize
  474.    
  475. ]
  476. */
  477. #define FMOD_MEMORY_NORMAL             0x00000000       /* Standard memory. */
  478. #define FMOD_MEMORY_STREAM_FILE        0x00000001       /* Stream file buffer, size controllable with System::setStreamBufferSize. */
  479. #define FMOD_MEMORY_STREAM_DECODE      0x00000002       /* Stream decode buffer, size controllable with FMOD_CREATESOUNDEXINFO::decodebuffersize. */
  480. #define FMOD_MEMORY_SAMPLEDATA         0x00000004       /* Sample data buffer.  Raw audio data, usually PCM/MPEG/ADPCM/XMA data. */
  481. #define FMOD_MEMORY_DSP_OUTPUTBUFFER   0x00000008       /* DSP memory block allocated when more than 1 output exists on a DSP node. */
  482. #define FMOD_MEMORY_XBOX360_PHYSICAL   0x00100000       /* Requires XPhysicalAlloc / XPhysicalFree. */
  483. #define FMOD_MEMORY_PERSISTENT         0x00200000       /* Persistent memory. Memory will be freed when System::release is called. */
  484. #define FMOD_MEMORY_SECONDARY          0x00400000       /* Secondary memory. Allocation should be in secondary memory. For example RSX on the PS3. */
  485. #define FMOD_MEMORY_ALL                0xFFFFFFFF
  486. /* [DEFINE_END] */
  487.  
  488.  
  489. /*
  490. [ENUM]
  491. [
  492.     [DESCRIPTION]  
  493.     These are speaker types defined for use with the System::setSpeakerMode or System::getSpeakerMode command.
  494.  
  495.     [REMARKS]
  496.     These are important notes on speaker modes in regards to sounds created with FMOD_SOFTWARE.
  497.     Note below the phrase 'sound channels' is used.  These are the subchannels inside a sound, they are not related and
  498.     have nothing to do with the FMOD class "Channel".
  499.     For example a mono sound has 1 sound channel, a stereo sound has 2 sound channels, and an AC3 or 6 channel wav file have 6 "sound channels".
  500.    
  501.     FMOD_SPEAKERMODE_RAW
  502.     ---------------------
  503.     This mode is for output devices that are not specifically mono/stereo/quad/surround/5.1 or 7.1, but are multichannel.
  504.     Use System::setSoftwareFormat to specify the number of speakers you want to address, otherwise it will default to 2 (stereo).
  505.     Sound channels map to speakers sequentially, so a mono sound maps to output speaker 0, stereo sound maps to output speaker 0 & 1.
  506.     The user assumes knowledge of the speaker order.  FMOD_SPEAKER enumerations may not apply, so raw channel indices should be used.
  507.     Multichannel sounds map input channels to output channels 1:1.
  508.     Channel::setPan and Channel::setSpeakerMix do not work.
  509.     Speaker levels must be manually set with Channel::setSpeakerLevels.
  510.    
  511.     FMOD_SPEAKERMODE_MONO
  512.     ---------------------
  513.     This mode is for a 1 speaker arrangement.
  514.     Panning does not work in this speaker mode.
  515.     Mono, stereo and multichannel sounds have each sound channel played on the one speaker unity.
  516.     Mix behavior for multichannel sounds can be set with Channel::setSpeakerLevels.
  517.     Channel::setSpeakerMix does not work.
  518.    
  519.     FMOD_SPEAKERMODE_STEREO
  520.     -----------------------
  521.     This mode is for 2 speaker arrangements that have a left and right speaker.
  522.     - Mono sounds default to an even distribution between left and right.  They can be panned with Channel::setPan.
  523.     - Stereo sounds default to the middle, or full left in the left speaker and full right in the right speaker.  
  524.     - They can be cross faded with Channel::setPan.
  525.     - Multichannel sounds have each sound channel played on each speaker at unity.
  526.     - Mix behavior for multichannel sounds can be set with Channel::setSpeakerLevels.
  527.     - Channel::setSpeakerMix works but only front left and right parameters are used, the rest are ignored.
  528.    
  529.     FMOD_SPEAKERMODE_QUAD
  530.     ------------------------
  531.     This mode is for 4 speaker arrangements that have a front left, front right, rear left and a rear right speaker.
  532.     - Mono sounds default to an even distribution between front left and front right.  They can be panned with Channel::setPan.
  533.     - Stereo sounds default to the left sound channel played on the front left, and the right sound channel played on the front right.
  534.     - They can be cross faded with Channel::setPan.
  535.     - Multichannel sounds default to all of their sound channels being played on each speaker in order of input.
  536.     - Mix behavior for multichannel sounds can be set with Channel::setSpeakerLevels.
  537.     - Channel::setSpeakerMix works but side left, side right, center and lfe are ignored.
  538.    
  539.     FMOD_SPEAKERMODE_SURROUND
  540.     ------------------------
  541.     This mode is for 5 speaker arrangements that have a left/right/center/rear left/rear right.
  542.     - Mono sounds default to the center speaker.  They can be panned with Channel::setPan.
  543.     - Stereo sounds default to the left sound channel played on the front left, and the right sound channel played on the front right.  
  544.     - They can be cross faded with Channel::setPan.
  545.     - Multichannel sounds default to all of their sound channels being played on each speaker in order of input.  
  546.     - Mix behavior for multichannel sounds can be set with Channel::setSpeakerLevels.
  547.     - Channel::setSpeakerMix works but side left / side right are ignored.
  548.    
  549.     FMOD_SPEAKERMODE_5POINT1
  550.     ------------------------
  551.     This mode is for 5.1 speaker arrangements that have a left/right/center/rear left/rear right and a subwoofer speaker.
  552.     - Mono sounds default to the center speaker.  They can be panned with Channel::setPan.
  553.     - Stereo sounds default to the left sound channel played on the front left, and the right sound channel played on the front right.  
  554.     - They can be cross faded with Channel::setPan.
  555.     - Multichannel sounds default to all of their sound channels being played on each speaker in order of input.  
  556.     - Mix behavior for multichannel sounds can be set with Channel::setSpeakerLevels.
  557.     - Channel::setSpeakerMix works but side left / side right are ignored.
  558.    
  559.     FMOD_SPEAKERMODE_7POINT1
  560.     ------------------------
  561.     This mode is for 7.1 speaker arrangements that have a left/right/center/rear left/rear right/side left/side right
  562.     and a subwoofer speaker.
  563.     - Mono sounds default to the center speaker.  They can be panned with Channel::setPan.
  564.     - Stereo sounds default to the left sound channel played on the front left, and the right sound channel played on the front right.  
  565.     - They can be cross faded with Channel::setPan.
  566.     - Multichannel sounds default to all of their sound channels being played on each speaker in order of input.  
  567.     - Mix behavior for multichannel sounds can be set with Channel::setSpeakerLevels.
  568.     - Channel::setSpeakerMix works and every parameter is used to set the balance of a sound in any speaker.
  569.    
  570.     FMOD_SPEAKERMODE_SRS5_1_MATRIX
  571.     ------------------------------------------------------
  572.     This mode is for mono, stereo, 5.1 and 6.1 speaker arrangements, as it is backwards and forwards compatible with
  573.     stereo, but to get a surround effect a SRS 5.1, Prologic or Prologic 2 hardware decoder / amplifier is needed or
  574.     a compatible SRS equipped device (e.g., laptop, TV, etc.) or accessory (e.g., headphone).
  575.     Pan behavior is the same as FMOD_SPEAKERMODE_5POINT1.
  576.    
  577.     If this function is called the numoutputchannels setting in System::setSoftwareFormat is overwritten.
  578.    
  579.     Output rate must be 44100, 48000 or 96000 for this to work otherwise FMOD_ERR_OUTPUT_INIT will be returned.
  580.  
  581.     FMOD_SPEAKERMODE_MYEARS
  582.     ------------------------------------------------------
  583.     This mode is for headphones.  This will attempt to load a MyEars profile (see myears.net.au) and use it to generate
  584.     surround sound on headphones using a personalized HRTF algorithm, for realistic 3d sound.
  585.     Pan behavior is the same as FMOD_SPEAKERMODE_7POINT1.
  586.     MyEars speaker mode will automatically be set if the speakermode is FMOD_SPEAKERMODE_STEREO and the MyEars profile exists.
  587.     If this mode is set explicitly, FMOD_INIT_DISABLE_MYEARS_AUTODETECT has no effect.
  588.     If this mode is set explicitly and the MyEars profile does not exist, FMOD_ERR_OUTPUT_DRIVERCALL will be returned.
  589.  
  590.     [PLATFORMS]
  591.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  592.  
  593.     [SEE_ALSO]
  594.     System::setSpeakerMode
  595.     System::getSpeakerMode
  596.     System::getDriverCaps
  597.     System::setSoftwareFormat
  598.     Channel::setSpeakerLevels
  599. ]
  600. */
  601. typedef enum
  602. {
  603.     FMOD_SPEAKERMODE_RAW,              /* There is no specific speakermode.  Sound channels are mapped in order of input to output.  Use System::setSoftwareFormat to specify speaker count. See remarks for more information. */
  604.     FMOD_SPEAKERMODE_MONO,             /* The speakers are monaural. */
  605.     FMOD_SPEAKERMODE_STEREO,           /* The speakers are stereo (DEFAULT). */
  606.     FMOD_SPEAKERMODE_QUAD,             /* 4 speaker setup.  This includes front left, front right, rear left, rear right.  */
  607.     FMOD_SPEAKERMODE_SURROUND,         /* 5 speaker setup.  This includes front left, front right, center, rear left, rear right. */
  608.     FMOD_SPEAKERMODE_5POINT1,          /* 5.1 speaker setup.  This includes front left, front right, center, rear left, rear right and a subwoofer. */
  609.     FMOD_SPEAKERMODE_7POINT1,          /* 7.1 speaker setup.  This includes front left, front right, center, rear left, rear right, side left, side right and a subwoofer. */
  610.    
  611.     FMOD_SPEAKERMODE_SRS5_1_MATRIX,    /* Stereo compatible output, embedded with surround information. SRS 5.1/Prologic/Prologic2 decoders will split the signal into a 5.1 speaker set-up or SRS virtual surround will decode into a 2-speaker/headphone setup.  See remarks about limitations.*/
  612.     FMOD_SPEAKERMODE_MYEARS,           /* Stereo output, but data is encoded using personalized HRTF algorithms.  See myears.net.au */
  613.  
  614.     FMOD_SPEAKERMODE_MAX,              /* Maximum number of speaker modes supported. */
  615.     FMOD_SPEAKERMODE_FORCEINT = 65536  /* Makes sure this enum is signed 32bit. */
  616. } FMOD_SPEAKERMODE;
  617.  
  618.  
  619. /*
  620. [ENUM]
  621. [
  622.     [DESCRIPTION]  
  623.     These are speaker types defined for use with the Channel::setSpeakerLevels command.
  624.     It can also be used for speaker placement in the System::set3DSpeakerPosition command.
  625.  
  626.     [REMARKS]
  627.     If you are using FMOD_SPEAKERMODE_RAW and speaker assignments are meaningless, just cast a raw integer value to this type.
  628.     For example (FMOD_SPEAKER)7 would use the 7th speaker (also the same as FMOD_SPEAKER_SIDE_RIGHT).
  629.     Values higher than this can be used if an output system has more than 8 speaker types / output channels.  15 is the current maximum.
  630.    
  631.     NOTE: On Playstation 3 in 7.1, the extra 2 speakers are not side left/side right, they are 'surround back left'/'surround back right' which
  632.     locate the speakers behind the listener instead of to the sides like on PC.  FMOD_SPEAKER_SBL/FMOD_SPEAKER_SBR are provided to make it
  633.     clearer what speaker is being addressed on that platform.
  634.  
  635.     [PLATFORMS]
  636.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  637.  
  638.     [SEE_ALSO]
  639.     FMOD_SPEAKERMODE
  640.     Channel::setSpeakerLevels
  641.     Channel::getSpeakerLevels
  642.     System::set3DSpeakerPosition
  643.     System::get3DSpeakerPosition
  644. ]
  645. */
  646. typedef enum
  647. {
  648.     FMOD_SPEAKER_FRONT_LEFT,
  649.     FMOD_SPEAKER_FRONT_RIGHT,
  650.     FMOD_SPEAKER_FRONT_CENTER,
  651.     FMOD_SPEAKER_LOW_FREQUENCY,
  652.     FMOD_SPEAKER_BACK_LEFT,
  653.     FMOD_SPEAKER_BACK_RIGHT,
  654.     FMOD_SPEAKER_SIDE_LEFT,
  655.     FMOD_SPEAKER_SIDE_RIGHT,
  656.    
  657.     FMOD_SPEAKER_MAX,                                       /* Maximum number of speaker types supported. */
  658.     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. */
  659.     FMOD_SPEAKER_NULL        = 65535,                       /* A non speaker.  Use this with ASIO mapping to ignore a speaker. */
  660.     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. */
  661.     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. */
  662.     FMOD_SPEAKER_FORCEINT    = 65536                        /* Makes sure this enum is signed 32bit. */
  663. } FMOD_SPEAKER;
  664.  
  665.  
  666. /*
  667. [ENUM]
  668. [
  669.     [DESCRIPTION]  
  670.     These are plugin types defined for use with the System::getNumPlugins,
  671.     System::getPluginInfo and System::unloadPlugin functions.
  672.  
  673.     [REMARKS]
  674.  
  675.     [PLATFORMS]
  676.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  677.  
  678.     [SEE_ALSO]
  679.     System::getNumPlugins
  680.     System::getPluginInfo
  681.     System::unloadPlugin
  682. ]
  683. */
  684. typedef enum
  685. {
  686.     FMOD_PLUGINTYPE_OUTPUT,          /* The plugin type is an output module.  FMOD mixed audio will play through one of these devices */
  687.     FMOD_PLUGINTYPE_CODEC,           /* The plugin type is a file format codec.  FMOD will use these codecs to load file formats for playback. */
  688.     FMOD_PLUGINTYPE_DSP,             /* The plugin type is a DSP unit.  FMOD will use these plugins as part of its DSP network to apply effects to output or generate sound in realtime. */
  689.  
  690.     FMOD_PLUGINTYPE_MAX,             /* Maximum number of plugin types supported. */
  691.     FMOD_PLUGINTYPE_FORCEINT = 65536 /* Makes sure this enum is signed 32bit. */
  692. } FMOD_PLUGINTYPE;
  693.  
  694.  
  695. /*
  696. [DEFINE]
  697. [
  698.     [NAME]
  699.     FMOD_INITFLAGS
  700.  
  701.     [DESCRIPTION]  
  702.     Initialization flags.  Use them with System::init in the flags parameter to change various behavior.  
  703.  
  704.     [REMARKS]
  705.     Use System::setAdvancedSettings to adjust settings for some of the features that are enabled by these flags.
  706.  
  707.     [PLATFORMS]
  708.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  709.  
  710.     [SEE_ALSO]
  711.     System::init
  712.     System::update
  713.     System::setAdvancedSettings
  714.     Channel::set3DOcclusion
  715. ]
  716. */
  717. #define FMOD_INIT_NORMAL                     0x00000000 /* All platforms - Initialize normally */
  718. #define FMOD_INIT_STREAM_FROM_UPDATE         0x00000001 /* All platforms - No stream thread is created internally.  Streams are driven from System::update.  Mainly used with non-realtime outputs. */
  719. #define FMOD_INIT_3D_RIGHTHANDED             0x00000002 /* All platforms - FMOD will treat +X as right, +Y as up and +Z as backwards (towards you). */
  720. #define FMOD_INIT_SOFTWARE_DISABLE           0x00000004 /* All platforms - Disable software mixer to save memory.  Anything created with FMOD_SOFTWARE will fail and DSP will not work. */
  721. #define FMOD_INIT_OCCLUSION_LOWPASS          0x00000008 /* All platforms - All FMOD_SOFTWARE (and FMOD_HARDWARE on 3DS and NGP) with FMOD_3D based voices will add a software lowpass filter effect into the DSP chain which is automatically used when Channel::set3DOcclusion is used or the geometry API. */
  722. #define FMOD_INIT_HRTF_LOWPASS               0x00000010 /* All platforms - All FMOD_SOFTWARE (and FMOD_HARDWARE on 3DS and NGP) with FMOD_3D based voices will add a software lowpass filter effect into the DSP chain which causes sounds to sound duller when the sound goes behind the listener.  Use System::setAdvancedSettings to adjust cutoff frequency. */
  723. #define FMOD_INIT_DISTANCE_FILTERING         0x00000200 /* All platforms - All FMOD_SOFTWARE with FMOD_3D based voices will add a software lowpass and highpass filter effect into the DSP chain which will act as a distance-automated bandpass filter. Use System::setAdvancedSettings to adjust the center frequency. */
  724. #define FMOD_INIT_SOFTWARE_REVERB_LOWMEM     0x00000040 /* All platforms - SFX reverb is run using 22/24khz delay buffers, halving the memory required. */
  725. #define FMOD_INIT_ENABLE_PROFILE             0x00000020 /* All platforms - Enable TCP/IP based host which allows FMOD Designer or FMOD Profiler to connect to it, and view memory, CPU and the DSP network graph in real-time. */
  726. #define FMOD_INIT_VOL0_BECOMES_VIRTUAL       0x00000080 /* All platforms - Any sounds that are 0 volume will go virtual and not be processed except for having their positions updated virtually.  Use System::setAdvancedSettings to adjust what volume besides zero to switch to virtual at. */
  727. #define FMOD_INIT_WASAPI_EXCLUSIVE           0x00000100 /* Win32 Vista only - for WASAPI output - Enable exclusive access to hardware, lower latency at the expense of excluding other applications from accessing the audio hardware. */
  728. #define FMOD_INIT_PS3_PREFERDTS              0x00800000 /* PS3 only - Prefer DTS over Dolby Digital if both are supported. Note: 8 and 6 channel LPCM is always preferred over both DTS and Dolby Digital. */
  729. #define FMOD_INIT_PS3_FORCE2CHLPCM           0x01000000 /* PS3 only - Force PS3 system output mode to 2 channel LPCM. */
  730. #define FMOD_INIT_DISABLEDOLBY               0x00100000 /* Wii / 3DS - Disable Dolby Pro Logic surround. Speakermode will be set to STEREO even if user has selected surround in the system settings. */
  731. #define FMOD_INIT_SYSTEM_MUSICMUTENOTPAUSE   0x00200000 /* Xbox 360 / PS3 - The "music" channelgroup which by default pauses when custom 360 dashboard / PS3 BGM music is played, can be changed to mute (therefore continues playing) instead of pausing, by using this flag. */
  732. #define FMOD_INIT_SYNCMIXERWITHUPDATE        0x00400000 /* Win32/Wii/PS3/Xbox/Xbox 360 - FMOD Mixer thread is woken up to do a mix when System::update is called rather than waking periodically on its own timer. */
  733. #define FMOD_INIT_GEOMETRY_USECLOSEST        0x04000000 /* All platforms - With the geometry engine, only process the closest polygon rather than accumulating all polygons the sound to listener line intersects. */
  734. #define FMOD_INIT_DISABLE_MYEARS_AUTODETECT  0x08000000 /* Win32 - Disables automatic setting of FMOD_SPEAKERMODE_STEREO to FMOD_SPEAKERMODE_MYEARS if the MyEars profile exists on the PC.  MyEars is HRTF 7.1 downmixing through headphones. */
  735. #define FMOD_INIT_PS3_DISABLEDTS             0x10000000 /* PS3 only - Disable DTS output mode selection */
  736. #define FMOD_INIT_PS3_DISABLEDOLBYDIGITAL    0x20000000 /* PS3 only - Disable Dolby Digital output mode selection */
  737. /* [DEFINE_END] */
  738.  
  739.  
  740. /*
  741. [ENUM]
  742. [
  743.     [DESCRIPTION]  
  744.     These definitions describe the type of song being played.
  745.  
  746.     [REMARKS]
  747.  
  748.     [PLATFORMS]
  749.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  750.  
  751.     [SEE_ALSO]      
  752.     Sound::getFormat
  753. ]
  754. */
  755. typedef enum
  756. {
  757.     FMOD_SOUND_TYPE_UNKNOWN,         /* 3rd party / unknown plugin format. */
  758.     FMOD_SOUND_TYPE_AIFF,            /* AIFF. */
  759.     FMOD_SOUND_TYPE_ASF,             /* Microsoft Advanced Systems Format (ie WMA/ASF/WMV). */
  760.     FMOD_SOUND_TYPE_AT3,             /* Sony ATRAC 3 format */
  761.     FMOD_SOUND_TYPE_CDDA,            /* Digital CD audio. */
  762.     FMOD_SOUND_TYPE_DLS,             /* Sound font / downloadable sound bank. */
  763.     FMOD_SOUND_TYPE_FLAC,            /* FLAC lossless codec. */
  764.     FMOD_SOUND_TYPE_FSB,             /* FMOD Sample Bank. */
  765.     FMOD_SOUND_TYPE_GCADPCM,         /* Nintendo GameCube/Wii ADPCM */
  766.     FMOD_SOUND_TYPE_IT,              /* Impulse Tracker. */
  767.     FMOD_SOUND_TYPE_MIDI,            /* MIDI. extracodecdata is a pointer to an FMOD_MIDI_EXTRACODECDATA structure. */
  768.     FMOD_SOUND_TYPE_MOD,             /* Protracker / Fasttracker MOD. */
  769.     FMOD_SOUND_TYPE_MPEG,            /* MP2/MP3 MPEG. */
  770.     FMOD_SOUND_TYPE_OGGVORBIS,       /* Ogg vorbis. */
  771.     FMOD_SOUND_TYPE_PLAYLIST,        /* Information only from ASX/PLS/M3U/WAX playlists */
  772.     FMOD_SOUND_TYPE_RAW,             /* Raw PCM data. */
  773.     FMOD_SOUND_TYPE_S3M,             /* ScreamTracker 3. */
  774.     FMOD_SOUND_TYPE_SF2,             /* Sound font 2 format. */
  775.     FMOD_SOUND_TYPE_USER,            /* User created sound. */
  776.     FMOD_SOUND_TYPE_WAV,             /* Microsoft WAV. */
  777.     FMOD_SOUND_TYPE_XM,              /* FastTracker 2 XM. */
  778.     FMOD_SOUND_TYPE_XMA,             /* Xbox360 XMA */
  779.     FMOD_SOUND_TYPE_VAG,             /* PlayStation Portable ADPCM VAG format. */
  780.     FMOD_SOUND_TYPE_AUDIOQUEUE,      /* iPhone hardware decoder, supports AAC, ALAC and MP3. extracodecdata is a pointer to an FMOD_AUDIOQUEUE_EXTRACODECDATA structure. */
  781.     FMOD_SOUND_TYPE_XWMA,            /* Xbox360 XWMA */
  782.     FMOD_SOUND_TYPE_BCWAV,           /* 3DS BCWAV container format for DSP ADPCM and PCM */
  783.     FMOD_SOUND_TYPE_AT9,             /* NGP ATRAC 9 format */
  784.     FMOD_SOUND_TYPE_VORBIS,          /* Raw vorbis */
  785.     FMOD_SOUND_TYPE_MEDIA_FOUNDATION,/* Microsoft Media Foundation wrappers, supports ASF/WMA */
  786.  
  787.     FMOD_SOUND_TYPE_MAX,             /* Maximum number of sound types supported. */
  788.     FMOD_SOUND_TYPE_FORCEINT = 65536 /* Makes sure this enum is signed 32bit. */
  789. } FMOD_SOUND_TYPE;
  790.  
  791.  
  792. /*
  793. [ENUM]
  794. [
  795.     [DESCRIPTION]  
  796.     These definitions describe the native format of the hardware or software buffer that will be used.
  797.  
  798.     [REMARKS]
  799.     This is the format the native hardware or software buffer will be or is created in.
  800.  
  801.     [PLATFORMS]
  802.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  803.  
  804.     [SEE_ALSO]
  805.     System::createSound
  806.     Sound::getFormat
  807. ]
  808. */
  809. typedef enum
  810. {
  811.     FMOD_SOUND_FORMAT_NONE,             /* Unitialized / unknown. */
  812.     FMOD_SOUND_FORMAT_PCM8,             /* 8bit integer PCM data. */
  813.     FMOD_SOUND_FORMAT_PCM16,            /* 16bit integer PCM data. */
  814.     FMOD_SOUND_FORMAT_PCM24,            /* 24bit integer PCM data. */
  815.     FMOD_SOUND_FORMAT_PCM32,            /* 32bit integer PCM data. */
  816.     FMOD_SOUND_FORMAT_PCMFLOAT,         /* 32bit floating point PCM data. */
  817.     FMOD_SOUND_FORMAT_GCADPCM,          /* Compressed Nintendo 3DS/Wii DSP data. */
  818.     FMOD_SOUND_FORMAT_IMAADPCM,         /* Compressed IMA ADPCM data. */
  819.     FMOD_SOUND_FORMAT_VAG,              /* Compressed PlayStation Portable ADPCM data. */
  820.     FMOD_SOUND_FORMAT_HEVAG,            /* Compressed PSVita ADPCM data. */
  821.     FMOD_SOUND_FORMAT_XMA,              /* Compressed Xbox360 XMA data. */
  822.     FMOD_SOUND_FORMAT_MPEG,             /* Compressed MPEG layer 2 or 3 data. */
  823.     FMOD_SOUND_FORMAT_CELT,             /* Compressed CELT data. */
  824.     FMOD_SOUND_FORMAT_AT9,              /* Compressed PSVita ATRAC9 data. */
  825.     FMOD_SOUND_FORMAT_XWMA,             /* Compressed Xbox360 xWMA data. */
  826.     FMOD_SOUND_FORMAT_VORBIS,           /* Compressed Vorbis data. */
  827.  
  828.     FMOD_SOUND_FORMAT_MAX,              /* Maximum number of sound formats supported. */  
  829.     FMOD_SOUND_FORMAT_FORCEINT = 65536  /* Makes sure this enum is signed 32bit. */
  830. } FMOD_SOUND_FORMAT;
  831.  
  832.  
  833. /*
  834. [DEFINE]
  835. [
  836.     [NAME]
  837.     FMOD_MODE
  838.  
  839.     [DESCRIPTION]  
  840.     Sound description bitfields, bitwise OR them together for loading and describing sounds.
  841.  
  842.     [REMARKS]
  843.     By default a sound will open as a static sound that is decompressed fully into memory to PCM. (ie equivalent of FMOD_CREATESAMPLE)
  844.     To have a sound stream instead, use FMOD_CREATESTREAM, or use the wrapper function System::createStream.
  845.     Some opening modes (ie FMOD_OPENUSER, FMOD_OPENMEMORY, FMOD_OPENMEMORY_POINT, FMOD_OPENRAW) will need extra information.
  846.     This can be provided using the FMOD_CREATESOUNDEXINFO structure.
  847.    
  848.     Specifying FMOD_OPENMEMORY_POINT will POINT to your memory rather allocating its own sound buffers and duplicating it internally.
  849.     <b><u>This means you cannot free the memory while FMOD is using it, until after Sound::release is called.</b></u>
  850.     With FMOD_OPENMEMORY_POINT, for PCM formats, only WAV, FSB, and RAW are supported.  For compressed formats, only those formats supported by FMOD_CREATECOMPRESSEDSAMPLE are supported.
  851.     With FMOD_OPENMEMORY_POINT and FMOD_OPENRAW or PCM, if using them together, note that you must pad the data on each side by 16 bytes.  This is so fmod can modify the ends of the data for looping/interpolation/mixing purposes.  If a wav file, you will need to insert silence, and then reset loop points to stop the playback from playing that silence.
  852.     With FMOD_OPENMEMORY_POINT, For Wii/PSP FMOD_HARDWARE supports this flag for the GCADPCM/VAG formats.  On other platforms FMOD_SOFTWARE must be used.
  853.    
  854.     <b>Xbox 360 memory</b> On Xbox 360 Specifying FMOD_OPENMEMORY_POINT to a virtual memory address will cause FMOD_ERR_INVALID_ADDRESS
  855.     to be returned.  Use physical memory only for this functionality.
  856.    
  857.     FMOD_LOWMEM is used on a sound if you want to minimize the memory overhead, by having FMOD not allocate memory for certain
  858.     features that are not likely to be used in a game environment.  These are :
  859.     1. Sound::getName functionality is removed.  256 bytes per sound is saved.
  860.  
  861.     [PLATFORMS]
  862.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  863.  
  864.     [SEE_ALSO]
  865.     System::createSound
  866.     System::createStream
  867.     Sound::setMode
  868.     Sound::getMode
  869.     Channel::setMode
  870.     Channel::getMode
  871.     Sound::set3DCustomRolloff
  872.     Channel::set3DCustomRolloff
  873.     Sound::getOpenState
  874. ]
  875. */
  876. #define FMOD_DEFAULT                   0x00000000  /* Default for all modes listed below. FMOD_LOOP_OFF, FMOD_2D, FMOD_HARDWARE */
  877. #define FMOD_LOOP_OFF                  0x00000001  /* For non looping sounds. (DEFAULT).  Overrides FMOD_LOOP_NORMAL / FMOD_LOOP_BIDI. */
  878. #define FMOD_LOOP_NORMAL               0x00000002  /* For forward looping sounds. */
  879. #define FMOD_LOOP_BIDI                 0x00000004  /* For bidirectional looping sounds. (only works on software mixed static sounds). */
  880. #define FMOD_2D                        0x00000008  /* Ignores any 3d processing. (DEFAULT). */
  881. #define FMOD_3D                        0x00000010  /* Makes the sound positionable in 3D.  Overrides FMOD_2D. */
  882. #define FMOD_HARDWARE                  0x00000020  /* Attempts to make sounds use hardware acceleration. (DEFAULT).  Note on platforms that don't support FMOD_HARDWARE (only 3DS, PS Vita, PSP, Wii and Wii U support FMOD_HARDWARE), this will be internally treated as FMOD_SOFTWARE. */
  883. #define FMOD_SOFTWARE                  0x00000040  /* Makes the sound be mixed by the FMOD CPU based software mixer.  Overrides FMOD_HARDWARE.  Use this for FFT, DSP, compressed sample support, 2D multi-speaker support and other software related features. */
  884. #define FMOD_CREATESTREAM              0x00000080  /* Decompress at runtime, streaming from the source provided (ie from disk).  Overrides FMOD_CREATESAMPLE and FMOD_CREATECOMPRESSEDSAMPLE.  Note a stream can only be played once at a time due to a stream only having 1 stream buffer and file handle.  Open multiple streams to have them play concurrently. */
  885. #define FMOD_CREATESAMPLE              0x00000100  /* Decompress at loadtime, decompressing or decoding whole file into memory as the target sample format (ie PCM).  Fastest for FMOD_SOFTWARE based playback and most flexible.  */
  886. #define FMOD_CREATECOMPRESSEDSAMPLE    0x00000200  /* Load MP2, MP3, IMAADPCM or XMA into memory and leave it compressed.  During playback the FMOD software mixer will decode it in realtime as a 'compressed sample'.  Can only be used in combination with FMOD_SOFTWARE.  Overrides FMOD_CREATESAMPLE.  If the sound data is not ADPCM, MPEG or XMA it will behave as if it was created with FMOD_CREATESAMPLE and decode the sound into PCM. */
  887. #define FMOD_OPENUSER                  0x00000400  /* Opens a user created static sample or stream. Use FMOD_CREATESOUNDEXINFO to specify format and/or read callbacks.  If a user created 'sample' is created with no read callback, the sample will be empty.  Use Sound::lock and Sound::unlock to place sound data into the sound if this is the case. */
  888. #define FMOD_OPENMEMORY                0x00000800  /* "name_or_data" will be interpreted as a pointer to memory instead of filename for creating sounds.  Use FMOD_CREATESOUNDEXINFO to specify length.  If used with FMOD_CREATESAMPLE or FMOD_CREATECOMPRESSEDSAMPLE, FMOD duplicates the memory into its own buffers.  Your own buffer can be freed after open.  If used with FMOD_CREATESTREAM, FMOD will stream out of the buffer whose pointer you passed in.  In this case, your own buffer should not be freed until you have finished with and released the stream.*/
  889. #define FMOD_OPENMEMORY_POINT          0x10000000  /* "name_or_data" will be interpreted as a pointer to memory instead of filename for creating sounds.  Use FMOD_CREATESOUNDEXINFO to specify length.  This differs to FMOD_OPENMEMORY in that it uses the memory as is, without duplicating the memory into its own buffers.  For Wii/PSP FMOD_HARDWARE supports this flag for the GCADPCM/VAG formats.  On other platforms FMOD_SOFTWARE must be used, as sound hardware on the other platforms (ie PC) cannot access main ram.  Cannot be freed after open, only after Sound::release.   Will not work if the data is compressed and FMOD_CREATECOMPRESSEDSAMPLE is not used. */
  890. #define FMOD_OPENRAW                   0x00001000  /* Will ignore file format and treat as raw pcm.  Use FMOD_CREATESOUNDEXINFO to specify format.  Requires at least defaultfrequency, numchannels and format to be specified before it will open.  Must be little endian data. */
  891. #define FMOD_OPENONLY                  0x00002000  /* Just open the file, dont prebuffer or read.  Good for fast opens for info, or when sound::readData is to be used. */
  892. #define FMOD_ACCURATETIME              0x00004000  /* For System::createSound - for accurate Sound::getLength/Channel::setPosition on VBR MP3, and MOD/S3M/XM/IT/MIDI files.  Scans file first, so takes longer to open. FMOD_OPENONLY does not affect this. */
  893. #define FMOD_MPEGSEARCH                0x00008000  /* For corrupted / bad MP3 files.  This will search all the way through the file until it hits a valid MPEG header.  Normally only searches for 4k. */
  894. #define FMOD_NONBLOCKING               0x00010000  /* For opening sounds and getting streamed subsounds (seeking) asyncronously.  Use Sound::getOpenState to poll the state of the sound as it opens or retrieves the subsound in the background. */
  895. #define FMOD_UNIQUE                    0x00020000  /* Unique sound, can only be played one at a time */
  896. #define FMOD_3D_HEADRELATIVE           0x00040000  /* Make the sound's position, velocity and orientation relative to the listener. */
  897. #define FMOD_3D_WORLDRELATIVE          0x00080000  /* Make the sound's position, velocity and orientation absolute (relative to the world). (DEFAULT) */
  898. #define FMOD_3D_INVERSEROLLOFF         0x00100000  /* This sound will follow the inverse rolloff model where mindistance = full volume, maxdistance = where sound stops attenuating, and rolloff is fixed according to the global rolloff factor.  (DEFAULT) */
  899. #define FMOD_3D_LINEARROLLOFF          0x00200000  /* This sound will follow a linear rolloff model where mindistance = full volume, maxdistance = silence.  Rolloffscale is ignored. */
  900. #define FMOD_3D_LINEARSQUAREROLLOFF    0x00400000  /* This sound will follow a linear-square rolloff model where mindistance = full volume, maxdistance = silence.  Rolloffscale is ignored. */
  901. #define FMOD_3D_CUSTOMROLLOFF          0x04000000  /* This sound will follow a rolloff model defined by Sound::set3DCustomRolloff / Channel::set3DCustomRolloff.  */
  902. #define FMOD_3D_IGNOREGEOMETRY         0x40000000  /* Is not affect by geometry occlusion.  If not specified in Sound::setMode, or Channel::setMode, the flag is cleared and it is affected by geometry again. */
  903. #define FMOD_UNICODE                   0x01000000  /* Filename is double-byte unicode. */
  904. #define FMOD_IGNORETAGS                0x02000000  /* Skips id3v2/asf/etc tag checks when opening a sound, to reduce seek/read overhead when opening files (helps with CD performance). */
  905. #define FMOD_LOWMEM                    0x08000000  /* Removes some features from samples to give a lower memory overhead, like Sound::getName.  See remarks. */
  906. #define FMOD_LOADSECONDARYRAM          0x20000000  /* Load sound into the secondary RAM of supported platform. On PS3, sounds will be loaded into RSX/VRAM. */
  907. #define FMOD_VIRTUAL_PLAYFROMSTART     0x80000000  /* For sounds that start virtual (due to being quiet or low importance), instead of swapping back to audible, and playing at the correct offset according to time, this flag makes the sound play from the start. */
  908.  
  909. /* [DEFINE_END] */
  910.  
  911.  
  912. /*
  913. [ENUM]
  914. [
  915.     [DESCRIPTION]  
  916.     These values describe what state a sound is in after FMOD_NONBLOCKING has been used to open it.
  917.  
  918.     [REMARKS]
  919.     With streams, if you are using FMOD_NONBLOCKING, note that if the user calls Sound::getSubSound, a stream will go into FMOD_OPENSTATE_SEEKING state and sound related commands will return FMOD_ERR_NOTREADY.
  920.     With streams, if you are using FMOD_NONBLOCKING, note that if the user calls Channel::getPosition, a stream will go into FMOD_OPENSTATE_SETPOSITION state and sound related commands will return FMOD_ERR_NOTREADY.
  921.  
  922.     [PLATFORMS]
  923.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  924.  
  925.     [SEE_ALSO]
  926.     Sound::getOpenState
  927.     FMOD_MODE
  928. ]
  929. */
  930. typedef enum
  931. {
  932.     FMOD_OPENSTATE_READY = 0,       /* Opened and ready to play. */
  933.     FMOD_OPENSTATE_LOADING,         /* Initial load in progress. */
  934.     FMOD_OPENSTATE_ERROR,           /* Failed to open - file not found, out of memory etc.  See return value of Sound::getOpenState for what happened. */
  935.     FMOD_OPENSTATE_CONNECTING,      /* Connecting to remote host (internet sounds only). */
  936.     FMOD_OPENSTATE_BUFFERING,       /* Buffering data. */
  937.     FMOD_OPENSTATE_SEEKING,         /* Seeking to subsound and re-flushing stream buffer. */
  938.     FMOD_OPENSTATE_PLAYING,         /* Ready and playing, but not possible to release at this time without stalling the main thread. */
  939.     FMOD_OPENSTATE_SETPOSITION,     /* Seeking within a stream to a different position. */
  940.  
  941.     FMOD_OPENSTATE_MAX,             /* Maximum number of open state types. */
  942.     FMOD_OPENSTATE_FORCEINT = 65536 /* Makes sure this enum is signed 32bit. */
  943. } FMOD_OPENSTATE;
  944.  
  945.  
  946. /*
  947. [ENUM]
  948. [
  949.     [DESCRIPTION]  
  950.     These flags are used with SoundGroup::setMaxAudibleBehavior to determine what happens when more sounds
  951.     are played than are specified with SoundGroup::setMaxAudible.
  952.  
  953.     [REMARKS]
  954.     When using FMOD_SOUNDGROUP_BEHAVIOR_MUTE, SoundGroup::setMuteFadeSpeed can be used to stop a sudden transition.  
  955.     Instead, the time specified will be used to cross fade between the sounds that go silent and the ones that become audible.
  956.  
  957.     [PLATFORMS]
  958.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  959.  
  960.     [SEE_ALSO]      
  961.     SoundGroup::setMaxAudibleBehavior
  962.     SoundGroup::getMaxAudibleBehavior
  963.     SoundGroup::setMaxAudible
  964.     SoundGroup::getMaxAudible
  965.     SoundGroup::setMuteFadeSpeed
  966.     SoundGroup::getMuteFadeSpeed
  967. ]
  968. */
  969. typedef enum
  970. {
  971.     FMOD_SOUNDGROUP_BEHAVIOR_FAIL,              /* Any sound played that puts the sound count over the SoundGroup::setMaxAudible setting, will simply fail during System::playSound. */
  972.     FMOD_SOUNDGROUP_BEHAVIOR_MUTE,              /* Any sound played that puts the sound count over the SoundGroup::setMaxAudible setting, will be silent, then if another sound in the group stops the sound that was silent before becomes audible again. */
  973.     FMOD_SOUNDGROUP_BEHAVIOR_STEALLOWEST,       /* Any sound played that puts the sound count over the SoundGroup::setMaxAudible setting, will steal the quietest / least important sound playing in the group. */
  974.  
  975.     FMOD_SOUNDGROUP_BEHAVIOR_MAX,               /* Maximum number of open state types. */
  976.     FMOD_SOUNDGROUP_BEHAVIOR_FORCEINT = 65536   /* Makes sure this enum is signed 32bit. */
  977. } FMOD_SOUNDGROUP_BEHAVIOR;
  978.  
  979.  
  980. /*
  981. [ENUM]
  982. [
  983.     [DESCRIPTION]  
  984.     These callback types are used with Channel::setCallback.
  985.  
  986.     [REMARKS]
  987.     Each callback has commanddata parameters passed as int unique to the type of callback.
  988.     See reference to FMOD_CHANNEL_CALLBACK to determine what they might mean for each type of callback.
  989.    
  990.     <b>Note!</b>  Currently the user must call System::update for these callbacks to trigger!
  991.  
  992.     [PLATFORMS]
  993.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  994.  
  995.     [SEE_ALSO]      
  996.     Channel::setCallback
  997.     FMOD_CHANNEL_CALLBACK
  998.     System::update
  999. ]
  1000. */
  1001. typedef enum
  1002. {
  1003.     FMOD_CHANNEL_CALLBACKTYPE_END,                  /* Called when a sound ends. */
  1004.     FMOD_CHANNEL_CALLBACKTYPE_VIRTUALVOICE,         /* Called when a voice is swapped out or swapped in. */
  1005.     FMOD_CHANNEL_CALLBACKTYPE_SYNCPOINT,            /* Called when a syncpoint is encountered.  Can be from wav file markers. */
  1006.     FMOD_CHANNEL_CALLBACKTYPE_OCCLUSION,            /* Called when the channel has its geometry occlusion value calculated.  Can be used to clamp or change the value. */
  1007.  
  1008.     FMOD_CHANNEL_CALLBACKTYPE_MAX,                  /* Maximum number of callback types supported. */
  1009.     FMOD_CHANNEL_CALLBACKTYPE_FORCEINT = 65536      /* Makes sure this enum is signed 32bit. */
  1010. } FMOD_CHANNEL_CALLBACKTYPE;
  1011.  
  1012.  
  1013. /*
  1014. [ENUM]
  1015. [
  1016.     [DESCRIPTION]  
  1017.     These callback types are used with System::setCallback.
  1018.  
  1019.     [REMARKS]
  1020.     Each callback has commanddata parameters passed as void* unique to the type of callback.
  1021.     See reference to FMOD_SYSTEM_CALLBACK to determine what they might mean for each type of callback.
  1022.    
  1023.     <b>Note!</b> Using FMOD_SYSTEM_CALLBACKTYPE_DEVICELISTCHANGED (on Mac only) requires the application to be running an event loop which will allow external changes to device list to be detected by FMOD.
  1024.    
  1025.     <b>Note!</b> The 'system' object pointer will be null for FMOD_SYSTEM_CALLBACKTYPE_THREADCREATED and FMOD_SYSTEM_CALLBACKTYPE_MEMORYALLOCATIONFAILED callbacks.
  1026.  
  1027.     [PLATFORMS]
  1028.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1029.  
  1030.     [SEE_ALSO]      
  1031.     System::setCallback
  1032.     FMOD_SYSTEM_CALLBACK
  1033.     System::update
  1034.     DSP::addInput
  1035. ]
  1036. */
  1037. typedef enum
  1038. {
  1039.     FMOD_SYSTEM_CALLBACKTYPE_DEVICELISTCHANGED,         /* Called from System::update when the enumerated list of devices has changed. */
  1040.     FMOD_SYSTEM_CALLBACKTYPE_DEVICELOST,                /* Called from System::update when an output device has been lost due to control panel parameter changes and FMOD cannot automatically recover. */
  1041.     FMOD_SYSTEM_CALLBACKTYPE_MEMORYALLOCATIONFAILED,    /* Called directly when a memory allocation fails somewhere in FMOD.  (NOTE - 'system' will be NULL in this callback type.)*/
  1042.     FMOD_SYSTEM_CALLBACKTYPE_THREADCREATED,             /* Called directly when a thread is created. (NOTE - 'system' will be NULL in this callback type.) */
  1043.     FMOD_SYSTEM_CALLBACKTYPE_BADDSPCONNECTION,          /* Called when a bad connection was made with DSP::addInput. Usually called from mixer thread because that is where the connections are made.  */
  1044.     FMOD_SYSTEM_CALLBACKTYPE_BADDSPLEVEL,               /* Called when too many effects were added exceeding the maximum tree depth of 128.  This is most likely caused by accidentally adding too many DSP effects. Usually called from mixer thread because that is where the connections are made.  */
  1045.  
  1046.     FMOD_SYSTEM_CALLBACKTYPE_MAX,                       /* Maximum number of callback types supported. */
  1047.     FMOD_SYSTEM_CALLBACKTYPE_FORCEINT = 65536           /* Makes sure this enum is signed 32bit. */
  1048. } FMOD_SYSTEM_CALLBACKTYPE;
  1049.  
  1050.  
  1051. /*
  1052.     FMOD Callbacks
  1053. */
  1054. typedef FMOD_RESULT (F_CALLBACK *FMOD_SYSTEM_CALLBACK)       (FMOD_SYSTEM *system, FMOD_SYSTEM_CALLBACKTYPE type, void *commanddata1, void *commanddata2);
  1055.  
  1056. typedef FMOD_RESULT (F_CALLBACK *FMOD_CHANNEL_CALLBACK)      (FMOD_CHANNEL *channel, FMOD_CHANNEL_CALLBACKTYPE type, void *commanddata1, void *commanddata2);
  1057.  
  1058. typedef FMOD_RESULT (F_CALLBACK *FMOD_SOUND_NONBLOCKCALLBACK)(FMOD_SOUND *sound, FMOD_RESULT result);
  1059. typedef FMOD_RESULT (F_CALLBACK *FMOD_SOUND_PCMREADCALLBACK)(FMOD_SOUND *sound, void *data, unsigned int datalen);
  1060. typedef FMOD_RESULT (F_CALLBACK *FMOD_SOUND_PCMSETPOSCALLBACK)(FMOD_SOUND *sound, int subsound, unsigned int position, FMOD_TIMEUNIT postype);
  1061.  
  1062. typedef FMOD_RESULT (F_CALLBACK *FMOD_FILE_OPENCALLBACK)     (const char *name, int unicode, unsigned int *filesize, void **handle, void **userdata);
  1063. typedef FMOD_RESULT (F_CALLBACK *FMOD_FILE_CLOSECALLBACK)    (void *handle, void *userdata);
  1064. typedef FMOD_RESULT (F_CALLBACK *FMOD_FILE_READCALLBACK)     (void *handle, void *buffer, unsigned int sizebytes, unsigned int *bytesread, void *userdata);
  1065. typedef FMOD_RESULT (F_CALLBACK *FMOD_FILE_SEEKCALLBACK)     (void *handle, unsigned int pos, void *userdata);
  1066. typedef FMOD_RESULT (F_CALLBACK *FMOD_FILE_ASYNCREADCALLBACK)(FMOD_ASYNCREADINFO *info, void *userdata);
  1067. typedef FMOD_RESULT (F_CALLBACK *FMOD_FILE_ASYNCCANCELCALLBACK)(void *handle, void *userdata);
  1068.  
  1069. typedef void *      (F_CALLBACK *FMOD_MEMORY_ALLOCCALLBACK)  (unsigned int size, FMOD_MEMORY_TYPE type, const char *sourcestr);
  1070. typedef void *      (F_CALLBACK *FMOD_MEMORY_REALLOCCALLBACK)(void *ptr, unsigned int size, FMOD_MEMORY_TYPE type, const char *sourcestr);
  1071. typedef void        (F_CALLBACK *FMOD_MEMORY_FREECALLBACK)   (void *ptr, FMOD_MEMORY_TYPE type, const char *sourcestr);
  1072.  
  1073. typedef float       (F_CALLBACK *FMOD_3D_ROLLOFFCALLBACK)    (FMOD_CHANNEL *channel, float distance);
  1074.  
  1075.  
  1076. /*
  1077. [ENUM]
  1078. [
  1079.     [DESCRIPTION]  
  1080.     List of windowing methods used in spectrum analysis to reduce leakage / transient signals intefering with the analysis.
  1081.     This is a problem with analysis of continuous signals that only have a small portion of the signal sample (the fft window size).
  1082.     Windowing the signal with a curve or triangle tapers the sides of the fft window to help alleviate this problem.
  1083.  
  1084.     [REMARKS]
  1085.     Cyclic signals such as a sine wave that repeat their cycle in a multiple of the window size do not need windowing.
  1086.     I.e. If the sine wave repeats every 1024, 512, 256 etc samples and the FMOD fft window is 1024, then the signal would not need windowing.
  1087.     Not windowing is the same as FMOD_DSP_FFT_WINDOW_RECT, which is the default.
  1088.     If the cycle of the signal (ie the sine wave) is not a multiple of the window size, it will cause frequency abnormalities, so a different windowing method is needed.
  1089.    
  1090.     [PLATFORMS]
  1091.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1092.  
  1093.     [SEE_ALSO]      
  1094.     System::getSpectrum
  1095.     Channel::getSpectrum
  1096. ]
  1097. */
  1098. typedef enum
  1099. {
  1100.     FMOD_DSP_FFT_WINDOW_RECT,            /* w[n] = 1.0                                                                                            */
  1101.     FMOD_DSP_FFT_WINDOW_TRIANGLE,        /* w[n] = TRI(2n/N)                                                                                      */
  1102.     FMOD_DSP_FFT_WINDOW_HAMMING,         /* w[n] = 0.54 - (0.46 * COS(n/N) )                                                                      */
  1103.     FMOD_DSP_FFT_WINDOW_HANNING,         /* w[n] = 0.5 *  (1.0  - COS(n/N) )                                                                      */
  1104.     FMOD_DSP_FFT_WINDOW_BLACKMAN,        /* w[n] = 0.42 - (0.5  * COS(n/N) ) + (0.08 * COS(2.0 * n/N) )                                           */
  1105.     FMOD_DSP_FFT_WINDOW_BLACKMANHARRIS,  /* w[n] = 0.35875 - (0.48829 * COS(1.0 * n/N)) + (0.14128 * COS(2.0 * n/N)) - (0.01168 * COS(3.0 * n/N)) */
  1106.    
  1107.     FMOD_DSP_FFT_WINDOW_MAX,             /* Maximum number of FFT window types supported. */
  1108.     FMOD_DSP_FFT_WINDOW_FORCEINT = 65536 /* Makes sure this enum is signed 32bit. */
  1109. } FMOD_DSP_FFT_WINDOW;
  1110.  
  1111.  
  1112. /*
  1113. [ENUM]
  1114. [
  1115.     [DESCRIPTION]  
  1116.     List of interpolation types that the FMOD Ex software mixer supports.  
  1117.  
  1118.     [REMARKS]
  1119.     The default resampler type is FMOD_DSP_RESAMPLER_LINEAR.
  1120.     Use System::setSoftwareFormat to tell FMOD the resampling quality you require for FMOD_SOFTWARE based sounds.
  1121.  
  1122.     [PLATFORMS]
  1123.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1124.  
  1125.     [SEE_ALSO]      
  1126.     System::setSoftwareFormat
  1127.     System::getSoftwareFormat
  1128. ]
  1129. */
  1130. typedef enum
  1131. {
  1132.     FMOD_DSP_RESAMPLER_NOINTERP,        /* No interpolation.  High frequency aliasing hiss will be audible depending on the sample rate of the sound. */
  1133.     FMOD_DSP_RESAMPLER_LINEAR,          /* Linear interpolation (default method).  Fast and good quality, causes very slight lowpass effect on low frequency sounds. */
  1134.     FMOD_DSP_RESAMPLER_CUBIC,           /* Cubic interpolation.  Slower than linear interpolation but better quality. */
  1135.     FMOD_DSP_RESAMPLER_SPLINE,          /* 5 point spline interpolation.  Slowest resampling method but best quality. */
  1136.  
  1137.     FMOD_DSP_RESAMPLER_MAX,             /* Maximum number of resample methods supported. */
  1138.     FMOD_DSP_RESAMPLER_FORCEINT = 65536 /* Makes sure this enum is signed 32bit. */
  1139. } FMOD_DSP_RESAMPLER;
  1140.  
  1141.  
  1142. /*
  1143. [ENUM]
  1144. [
  1145.     [DESCRIPTION]  
  1146.     List of tag types that could be stored within a sound.  These include id3 tags, metadata from netstreams and vorbis/asf data.
  1147.  
  1148.     [REMARKS]
  1149.  
  1150.     [PLATFORMS]
  1151.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1152.  
  1153.     [SEE_ALSO]      
  1154.     Sound::getTag
  1155. ]
  1156. */
  1157. typedef enum
  1158. {
  1159.     FMOD_TAGTYPE_UNKNOWN = 0,
  1160.     FMOD_TAGTYPE_ID3V1,
  1161.     FMOD_TAGTYPE_ID3V2,
  1162.     FMOD_TAGTYPE_VORBISCOMMENT,
  1163.     FMOD_TAGTYPE_SHOUTCAST,
  1164.     FMOD_TAGTYPE_ICECAST,
  1165.     FMOD_TAGTYPE_ASF,
  1166.     FMOD_TAGTYPE_MIDI,
  1167.     FMOD_TAGTYPE_PLAYLIST,
  1168.     FMOD_TAGTYPE_FMOD,
  1169.     FMOD_TAGTYPE_USER,
  1170.  
  1171.     FMOD_TAGTYPE_MAX,               /* Maximum number of tag types supported. */
  1172.     FMOD_TAGTYPE_FORCEINT = 65536   /* Makes sure this enum is signed 32bit. */
  1173. } FMOD_TAGTYPE;
  1174.  
  1175.  
  1176. /*
  1177. [ENUM]
  1178. [
  1179.     [DESCRIPTION]  
  1180.     List of data types that can be returned by Sound::getTag
  1181.  
  1182.     [REMARKS]
  1183.  
  1184.     [PLATFORMS]
  1185.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1186.  
  1187.     [SEE_ALSO]      
  1188.     Sound::getTag
  1189. ]
  1190. */
  1191. typedef enum
  1192. {
  1193.     FMOD_TAGDATATYPE_BINARY = 0,
  1194.     FMOD_TAGDATATYPE_INT,
  1195.     FMOD_TAGDATATYPE_FLOAT,
  1196.     FMOD_TAGDATATYPE_STRING,
  1197.     FMOD_TAGDATATYPE_STRING_UTF16,
  1198.     FMOD_TAGDATATYPE_STRING_UTF16BE,
  1199.     FMOD_TAGDATATYPE_STRING_UTF8,
  1200.     FMOD_TAGDATATYPE_CDTOC,
  1201.  
  1202.     FMOD_TAGDATATYPE_MAX,               /* Maximum number of tag datatypes supported. */
  1203.     FMOD_TAGDATATYPE_FORCEINT = 65536   /* Makes sure this enum is signed 32bit. */
  1204. } FMOD_TAGDATATYPE;
  1205.  
  1206.  
  1207. /*
  1208. [ENUM]
  1209. [
  1210.     [DESCRIPTION]  
  1211.     Types of delay that can be used with Channel::setDelay / Channel::getDelay.
  1212.  
  1213.     [REMARKS]
  1214.     If you haven't called Channel::setDelay yet, if you call Channel::getDelay with FMOD_DELAYTYPE_DSPCLOCK_START it will return the
  1215.     equivalent global DSP clock value to determine when a channel started, so that you can use it for other channels to sync against.
  1216.    
  1217.     Use System::getDSPClock to also get the current dspclock time, a base for future calls to Channel::setDelay.
  1218.    
  1219.     Use FMOD_64BIT_ADD or FMOD_64BIT_SUB to add a hi/lo combination together and cope with wraparound.
  1220.    
  1221.     If FMOD_DELAYTYPE_END_MS is specified, the value is not treated as a 64 bit number, just the delayhi value is used and it is treated as milliseconds.
  1222.  
  1223.     [PLATFORMS]
  1224.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1225.  
  1226.     [SEE_ALSO]      
  1227.     Channel::setDelay
  1228.     Channel::getDelay
  1229.     System::getDSPClock
  1230. ]
  1231. */
  1232. typedef enum
  1233. {
  1234.     FMOD_DELAYTYPE_END_MS,              /* Delay at the end of the sound in milliseconds.  Use delayhi only.   Channel::isPlaying will remain true until this delay has passed even though the sound itself has stopped playing.*/
  1235.     FMOD_DELAYTYPE_DSPCLOCK_START,      /* Time the sound started if Channel::getDelay is used, or if Channel::setDelay is used, the sound will delay playing until this exact tick. */
  1236.     FMOD_DELAYTYPE_DSPCLOCK_END,        /* Time the sound should end. If this is non-zero, the channel will go silent at this exact tick. */
  1237.     FMOD_DELAYTYPE_DSPCLOCK_PAUSE,      /* Time the sound should pause. If this is non-zero, the channel will pause at this exact tick. */
  1238.  
  1239.     FMOD_DELAYTYPE_MAX,                 /* Maximum number of tag datatypes supported. */
  1240.     FMOD_DELAYTYPE_FORCEINT = 65536     /* Makes sure this enum is signed 32bit. */
  1241. } FMOD_DELAYTYPE;
  1242.  
  1243.  
  1244. #define FMOD_64BIT_ADD(_hi1, _lo1, _hi2, _lo2) _hi1 += ((_hi2) + ((((_lo1) + (_lo2)) < (_lo1)) ? 1 : 0)); (_lo1) += (_lo2);
  1245. #define FMOD_64BIT_SUB(_hi1, _lo1, _hi2, _lo2) _hi1 -= ((_hi2) + ((((_lo1) - (_lo2)) > (_lo1)) ? 1 : 0)); (_lo1) -= (_lo2);
  1246.  
  1247.  
  1248. /*
  1249. [STRUCTURE]
  1250. [
  1251.     [DESCRIPTION]  
  1252.     Structure describing a piece of tag data.
  1253.  
  1254.     [REMARKS]
  1255.     Members marked with [r] mean the variable is modified by FMOD and is for reading purposes only.  Do not change this value.
  1256.     Members marked with [w] mean the variable can be written to.  The user can set the value.
  1257.  
  1258.     [PLATFORMS]
  1259.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1260.  
  1261.     [SEE_ALSO]      
  1262.     Sound::getTag
  1263.     FMOD_TAGTYPE
  1264.     FMOD_TAGDATATYPE
  1265. ]
  1266. */
  1267. typedef struct FMOD_TAG
  1268. {
  1269.     FMOD_TAGTYPE      type;         /* [r] The type of this tag. */
  1270.     FMOD_TAGDATATYPE  datatype;     /* [r] The type of data that this tag contains */
  1271.     char             *name;         /* [r] The name of this tag i.e. "TITLE", "ARTIST" etc. */
  1272.     void             *data;         /* [r] Pointer to the tag data - its format is determined by the datatype member */
  1273.     unsigned int      datalen;      /* [r] Length of the data contained in this tag */
  1274.     FMOD_BOOL         updated;      /* [r] True if this tag has been updated since last being accessed with Sound::getTag */
  1275. } FMOD_TAG;
  1276.  
  1277.  
  1278. /*
  1279. [STRUCTURE]
  1280. [
  1281.     [DESCRIPTION]  
  1282.     Structure describing a CD/DVD table of contents
  1283.  
  1284.     [REMARKS]
  1285.     Members marked with [r] mean the variable is modified by FMOD and is for reading purposes only.  Do not change this value.
  1286.     Members marked with [w] mean the variable can be written to.  The user can set the value.
  1287.  
  1288.     [PLATFORMS]
  1289.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1290.  
  1291.     [SEE_ALSO]      
  1292.     Sound::getTag
  1293. ]
  1294. */
  1295. typedef struct FMOD_CDTOC
  1296. {
  1297.     int numtracks;                  /* [r] The number of tracks on the CD */
  1298.     int min[100];                   /* [r] The start offset of each track in minutes */
  1299.     int sec[100];                   /* [r] The start offset of each track in seconds */
  1300.     int frame[100];                 /* [r] The start offset of each track in frames */
  1301. } FMOD_CDTOC;
  1302.  
  1303.  
  1304. /*
  1305. [DEFINE]
  1306. [
  1307.     [NAME]
  1308.     FMOD_TIMEUNIT
  1309.  
  1310.     [DESCRIPTION]  
  1311.     List of time types that can be returned by Sound::getLength and used with Channel::setPosition or Channel::getPosition.
  1312.  
  1313.     [REMARKS]
  1314.     FMOD_TIMEUNIT_SENTENCE_MS, FMOD_TIMEUNIT_SENTENCE_PCM, FMOD_TIMEUNIT_SENTENCE_PCMBYTES, FMOD_TIMEUNIT_SENTENCE and FMOD_TIMEUNIT_SENTENCE_SUBSOUND are only supported by Channel functions.
  1315.     Do not combine flags except FMOD_TIMEUNIT_BUFFERED.
  1316.  
  1317.     [PLATFORMS]
  1318.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1319.  
  1320.     [SEE_ALSO]      
  1321.     Sound::getLength
  1322.     Channel::setPosition
  1323.     Channel::getPosition
  1324. ]
  1325. */
  1326. #define FMOD_TIMEUNIT_MS                0x00000001  /* Milliseconds. */
  1327. #define FMOD_TIMEUNIT_PCM               0x00000002  /* PCM samples, related to milliseconds * samplerate / 1000. */
  1328. #define FMOD_TIMEUNIT_PCMBYTES          0x00000004  /* Bytes, related to PCM samples * channels * datawidth (ie 16bit = 2 bytes). */
  1329. #define FMOD_TIMEUNIT_RAWBYTES          0x00000008  /* Raw file bytes of (compressed) sound data (does not include headers).  Only used by Sound::getLength and Channel::getPosition. */
  1330. #define FMOD_TIMEUNIT_PCMFRACTION       0x00000010  /* Fractions of 1 PCM sample.  Unsigned int range 0 to 0xFFFFFFFF.  Used for sub-sample granularity for DSP purposes. */
  1331. #define FMOD_TIMEUNIT_MODORDER          0x00000100  /* MOD/S3M/XM/IT.  Order in a sequenced module format.  Use Sound::getFormat to determine the PCM format being decoded to. */
  1332. #define FMOD_TIMEUNIT_MODROW            0x00000200  /* MOD/S3M/XM/IT.  Current row in a sequenced module format.  Sound::getLength will return the number of rows in the currently playing or seeked to pattern. */
  1333. #define FMOD_TIMEUNIT_MODPATTERN        0x00000400  /* MOD/S3M/XM/IT.  Current pattern in a sequenced module format.  Sound::getLength will return the number of patterns in the song and Channel::getPosition will return the currently playing pattern. */
  1334. #define FMOD_TIMEUNIT_SENTENCE_MS       0x00010000  /* Currently playing subsound in a sentence time in milliseconds. */
  1335. #define FMOD_TIMEUNIT_SENTENCE_PCM      0x00020000  /* Currently playing subsound in a sentence time in PCM Samples, related to milliseconds * samplerate / 1000. */
  1336. #define FMOD_TIMEUNIT_SENTENCE_PCMBYTES 0x00040000  /* Currently playing subsound in a sentence time in bytes, related to PCM samples * channels * datawidth (ie 16bit = 2 bytes). */
  1337. #define FMOD_TIMEUNIT_SENTENCE          0x00080000  /* Currently playing sentence index according to the channel. */
  1338. #define FMOD_TIMEUNIT_SENTENCE_SUBSOUND 0x00100000  /* Currently playing subsound index in a sentence. */
  1339. #define FMOD_TIMEUNIT_BUFFERED          0x10000000  /* Time value as seen by buffered stream.  This is always ahead of audible time, and is only used for processing. */
  1340. /* [DEFINE_END] */
  1341.  
  1342.  
  1343. /*
  1344. [ENUM]
  1345. [
  1346.     [DESCRIPTION]
  1347.     When creating a multichannel sound, FMOD will pan them to their default speaker locations, for example a 6 channel sound will default to one channel per 5.1 output speaker.
  1348.     Another example is a stereo sound.  It will default to left = front left, right = front right.
  1349.    
  1350.     This is for sounds that are not 'default'.  For example you might have a sound that is 6 channels but actually made up of 3 stereo pairs, that should all be located in front left, front right only.
  1351.  
  1352.     [REMARKS]
  1353.     For full flexibility of speaker assignments, use Channel::setSpeakerLevels.
  1354.  
  1355.     [PLATFORMS]
  1356.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1357.  
  1358.     [SEE_ALSO]
  1359.     FMOD_CREATESOUNDEXINFO
  1360.     Channel::setSpeakerLevels
  1361. ]
  1362. */
  1363. typedef enum
  1364. {
  1365.     FMOD_SPEAKERMAPTYPE_DEFAULT,     /* This is the default, and just means FMOD decides which speakers it puts the source channels. */
  1366.     FMOD_SPEAKERMAPTYPE_ALLMONO,     /* This means the sound is made up of all mono sounds.  All voices will be panned to the front center by default in this case.  */
  1367.     FMOD_SPEAKERMAPTYPE_ALLSTEREO,   /* This means the sound is made up of all stereo sounds.  All voices will be panned to front left and front right alternating every second channel.  */
  1368.     FMOD_SPEAKERMAPTYPE_51_PROTOOLS  /* Map a 5.1 sound to use protools L C R Ls Rs LFE mapping.  Will return an error if not a 6 channel sound. */
  1369. } FMOD_SPEAKERMAPTYPE;
  1370.  
  1371.  
  1372. /*
  1373. [STRUCTURE]
  1374. [
  1375.     [DESCRIPTION]
  1376.     Use this structure with System::createSound when more control is needed over loading.
  1377.     The possible reasons to use this with System::createSound are:
  1378.     - Loading a file from memory.
  1379.     - Loading a file from within another larger (possibly wad/pak) file, by giving the loader an offset and length.
  1380.     - To create a user created / non file based sound.
  1381.     - To specify a starting subsound to seek to within a multi-sample sounds (ie FSB/DLS/SF2) when created as a stream.
  1382.     - To specify which subsounds to load for multi-sample sounds (ie FSB/DLS/SF2) so that memory is saved and only a subset is actually loaded/read from disk.
  1383.     - To specify 'piggyback' read and seek callbacks for capture of sound data as fmod reads and decodes it.  Useful for ripping decoded PCM data from sounds as they are loaded / played.
  1384.     - To specify a MIDI DLS/SF2 sample set file to load when opening a MIDI file.
  1385.     See below on what members to fill for each of the above types of sound you want to create.
  1386.  
  1387.     [REMARKS]
  1388.     This structure is optional!  Specify 0 or NULL in System::createSound if you don't need it!
  1389.    
  1390.     <u>Loading a file from memory.</u>
  1391.     - Create the sound using the FMOD_OPENMEMORY flag.
  1392.     - Mandatory.  Specify 'length' for the size of the memory block in bytes.
  1393.     - Other flags are optional.
  1394.    
  1395.    
  1396.     <u>Loading a file from within another larger (possibly wad/pak) file, by giving the loader an offset and length.</u>
  1397.     - Mandatory.  Specify 'fileoffset' and 'length'.
  1398.     - Other flags are optional.
  1399.    
  1400.    
  1401.     <u>To create a user created / non file based sound.</u>
  1402.     - Create the sound using the FMOD_OPENUSER flag.
  1403.     - Mandatory.  Specify 'defaultfrequency, 'numchannels' and 'format'.
  1404.     - Other flags are optional.
  1405.    
  1406.    
  1407.     <u>To specify a starting subsound to seek to and flush with, within a multi-sample stream (ie FSB/DLS/SF2).</u>
  1408.    
  1409.     - Mandatory.  Specify 'initialsubsound'.
  1410.    
  1411.    
  1412.     <u>To specify which subsounds to load for multi-sample sounds (ie FSB/DLS/SF2) so that memory is saved and only a subset is actually loaded/read from disk.</u>
  1413.    
  1414.     - Mandatory.  Specify 'inclusionlist' and 'inclusionlistnum'.
  1415.    
  1416.    
  1417.     <u>To specify 'piggyback' read and seek callbacks for capture of sound data as fmod reads and decodes it.  Useful for ripping decoded PCM data from sounds as they are loaded / played.</u>
  1418.    
  1419.     - Mandatory.  Specify 'pcmreadcallback' and 'pcmseekcallback'.
  1420.    
  1421.    
  1422.     <u>To specify a MIDI DLS/SF2 sample set file to load when opening a MIDI file.</u>
  1423.    
  1424.     - Mandatory.  Specify 'dlsname'.
  1425.    
  1426.    
  1427.     Setting the 'decodebuffersize' is for cpu intensive codecs that may be causing stuttering, not file intensive codecs (ie those from CD or netstreams) which are normally
  1428.     altered with System::setStreamBufferSize.  As an example of cpu intensive codecs, an mp3 file will take more cpu to decode than a PCM wav file.
  1429.     If you have a stuttering effect, then it is using more cpu than the decode buffer playback rate can keep up with.  Increasing the decode buffersize will most likely solve this problem.
  1430.    
  1431.    
  1432.     FSB codec.  If inclusionlist and numsubsounds are used together, this will trigger a special mode where subsounds are shuffled down to save memory.  (useful for large FSB
  1433.     files where you only want to load 1 sound).  There will be no gaps, ie no null subsounds.  As an example, if there are 10,000 subsounds and there is an inclusionlist with only 1 entry,
  1434.     and numsubsounds = 1, then subsound 0 will be that entry, and there will only be the memory allocated for 1 subsound.  Previously there would still be 10,000 subsound pointers and other
  1435.     associated codec entries allocated along with it multiplied by 10,000.
  1436.    
  1437.     Members marked with [r] mean the variable is modified by FMOD and is for reading purposes only.  Do not change this value.
  1438.     Members marked with [w] mean the variable can be written to.  The user can set the value.
  1439.  
  1440.     [PLATFORMS]
  1441.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1442.  
  1443.     [SEE_ALSO]
  1444.     System::createSound
  1445.     System::setStreamBufferSize
  1446.     FMOD_MODE
  1447.     FMOD_SOUND_FORMAT
  1448.     FMOD_SOUND_TYPE
  1449.     FMOD_SPEAKERMAPTYPE
  1450. ]
  1451. */
  1452. typedef struct FMOD_CREATESOUNDEXINFO
  1453. {
  1454.     int                            cbsize;             /* [w] Size of this structure.  This is used so the structure can be expanded in the future and still work on older versions of FMOD Ex. */
  1455.     unsigned int                   length;             /* [w] Optional. Specify 0 to ignore. Size in bytes of file to load, or sound to create (in this case only if FMOD_OPENUSER is used).  Required if loading from memory.  If 0 is specified, then it will use the size of the file (unless loading from memory then an error will be returned). */
  1456.     unsigned int                   fileoffset;         /* [w] Optional. Specify 0 to ignore. Offset from start of the file to start loading from.  This is useful for loading files from inside big data files. */
  1457.     int                            numchannels;        /* [w] Optional. Specify 0 to ignore. Number of channels in a sound mandatory if FMOD_OPENUSER or FMOD_OPENRAW is used. */
  1458.     int                            defaultfrequency;   /* [w] Optional. Specify 0 to ignore. Default frequency of sound in a sound mandatory if FMOD_OPENUSER or FMOD_OPENRAW is used.  Other formats use the frequency determined by the file format. */
  1459.     FMOD_SOUND_FORMAT              format;             /* [w] Optional. Specify 0 or FMOD_SOUND_FORMAT_NONE to ignore. Format of the sound mandatory if FMOD_OPENUSER or FMOD_OPENRAW is used.  Other formats use the format determined by the file format.   */
  1460.     unsigned int                   decodebuffersize;   /* [w] Optional. Specify 0 to ignore. For streams.  This determines the size of the double buffer (in PCM samples) that a stream uses.  Use this for user created streams if you want to determine the size of the callback buffer passed to you.  Specify 0 to use FMOD's default size which is currently equivalent to 400ms of the sound format created/loaded. */
  1461.     int                            initialsubsound;    /* [w] Optional. Specify 0 to ignore. In a multi-sample file format such as .FSB/.DLS/.SF2, specify the initial subsound to seek to, only if FMOD_CREATESTREAM is used. */
  1462.     int                            numsubsounds;       /* [w] Optional. Specify 0 to ignore or have no subsounds.  In a sound created with FMOD_OPENUSER, specify the number of subsounds that are accessable with Sound::getSubSound.  If not created with FMOD_OPENUSER, this will limit the number of subsounds loaded within a multi-subsound file.  If using FSB, then if FMOD_CREATESOUNDEXINFO::inclusionlist is used, this will shuffle subsounds down so that there are not any gaps.  It will mean that the indices of the sounds will be different. */
  1463.     int                           *inclusionlist;      /* [w] Optional. Specify 0 to ignore. In a multi-sample format such as .FSB/.DLS/.SF2 it may be desirable to specify only a subset of sounds to be loaded out of the whole file.  This is an array of subsound indices to load into memory when created. */
  1464.     int                            inclusionlistnum;   /* [w] Optional. Specify 0 to ignore. This is the number of integers contained within the inclusionlist array. */
  1465.     FMOD_SOUND_PCMREADCALLBACK     pcmreadcallback;    /* [w] Optional. Specify 0 to ignore. Callback to 'piggyback' on FMOD's read functions and accept or even write PCM data while FMOD is opening the sound.  Used for user sounds created with FMOD_OPENUSER or for capturing decoded data as FMOD reads it. */
  1466.     FMOD_SOUND_PCMSETPOSCALLBACK   pcmsetposcallback;  /* [w] Optional. Specify 0 to ignore. Callback for when the user calls a seeking function such as Channel::setTime or Channel::setPosition within a multi-sample sound, and for when it is opened.*/
  1467.     FMOD_SOUND_NONBLOCKCALLBACK    nonblockcallback;   /* [w] Optional. Specify 0 to ignore. Callback for successful completion, or error while loading a sound that used the FMOD_NONBLOCKING flag.*/
  1468.     const char                    *dlsname;            /* [w] Optional. Specify 0 to ignore. Filename for a DLS or SF2 sample set when loading a MIDI file. If not specified, on Windows it will attempt to open /windows/system32/drivers/gm.dls or /windows/system32/drivers/etc/gm.dls, on Mac it will attempt to load /System/Library/Components/CoreAudio.component/Contents/Resources/gs_instruments.dls, otherwise the MIDI will fail to open. Current DLS support is for level 1 of the specification. */
  1469.     const char                    *encryptionkey;      /* [w] Optional. Specify 0 to ignore. Key for encrypted FSB file.  Without this key an encrypted FSB file will not load. */
  1470.     int                            maxpolyphony;       /* [w] Optional. Specify 0 to ignore. For sequenced formats with dynamic channel allocation such as .MID and .IT, this specifies the maximum voice count allowed while playing.  .IT defaults to 64.  .MID defaults to 32. */
  1471.     void                          *userdata;           /* [w] Optional. Specify 0 to ignore. This is user data to be attached to the sound during creation.  Access via Sound::getUserData.  Note: This is not passed to FMOD_FILE_OPENCALLBACK, that is a different userdata that is file specific. */
  1472.     FMOD_SOUND_TYPE                suggestedsoundtype; /* [w] Optional. Specify 0 or FMOD_SOUND_TYPE_UNKNOWN to ignore.  Instead of scanning all codec types, use this to speed up loading by making it jump straight to this codec. */
  1473.     FMOD_FILE_OPENCALLBACK         useropen;           /* [w] Optional. Specify 0 to ignore. Callback for opening this file. */
  1474.     FMOD_FILE_CLOSECALLBACK        userclose;          /* [w] Optional. Specify 0 to ignore. Callback for closing this file. */
  1475.     FMOD_FILE_READCALLBACK         userread;           /* [w] Optional. Specify 0 to ignore. Callback for reading from this file. */
  1476.     FMOD_FILE_SEEKCALLBACK         userseek;           /* [w] Optional. Specify 0 to ignore. Callback for seeking within this file. */
  1477.     FMOD_FILE_ASYNCREADCALLBACK    userasyncread;      /* [w] Optional. Specify 0 to ignore. Callback for seeking within this file. */
  1478.     FMOD_FILE_ASYNCCANCELCALLBACK  userasynccancel;    /* [w] Optional. Specify 0 to ignore. Callback for seeking within this file. */
  1479.     FMOD_SPEAKERMAPTYPE            speakermap;         /* [w] Optional. Specify 0 to ignore. Use this to differ the way fmod maps multichannel sounds to speakers.  See FMOD_SPEAKERMAPTYPE for more. */
  1480.     FMOD_SOUNDGROUP               *initialsoundgroup;  /* [w] Optional. Specify 0 to ignore. Specify a sound group if required, to put sound in as it is created. */
  1481.     unsigned int                   initialseekposition;/* [w] Optional. Specify 0 to ignore. For streams. Specify an initial position to seek the stream to. */
  1482.     FMOD_TIMEUNIT                  initialseekpostype; /* [w] Optional. Specify 0 to ignore. For streams. Specify the time unit for the position set in initialseekposition. */
  1483.     int                            ignoresetfilesystem;/* [w] Optional. Specify 0 to ignore. Set to 1 to use fmod's built in file system. Ignores setFileSystem callbacks and also FMOD_CREATESOUNEXINFO file callbacks.  Useful for specific cases where you don't want to use your own file system but want to use fmod's file system (ie net streaming). */
  1484.     int                            cddaforceaspi;      /* [w] Optional. Specify 0 to ignore. For CDDA sounds only - if non-zero use ASPI instead of NTSCSI to access the specified CD/DVD device. */
  1485.     unsigned int                   audioqueuepolicy;   /* [w] Optional. Specify 0 or FMOD_AUDIOQUEUE_CODECPOLICY_DEFAULT to ignore. Policy used to determine whether hardware or software is used for decoding, see FMOD_AUDIOQUEUE_CODECPOLICY for options (iOS >= 3.0 required, otherwise only hardware is available) */
  1486.     unsigned int                   minmidigranularity; /* [w] Optional. Specify 0 to ignore. Allows you to set a minimum desired MIDI mixer granularity. Values smaller than 512 give greater than default accuracy at the cost of more CPU and vice versa. Specify 0 for default (512 samples). */
  1487.     int                            nonblockthreadid;   /* [w] Optional. Specify 0 to ignore. Specifies a thread index to execute non blocking load on.  Allows for up to 5 threads to be used for loading at once.  This is to avoid one load blocking another.  Maximum value = 4. */
  1488. } FMOD_CREATESOUNDEXINFO;
  1489.  
  1490.  
  1491. /*
  1492. [STRUCTURE]
  1493. [
  1494.     [DESCRIPTION]
  1495.     Structure defining a reverb environment.
  1496.  
  1497.     [REMARKS]
  1498.     Note the default reverb properties are the same as the FMOD_PRESET_GENERIC preset.
  1499.     Note that integer values that typically range from -10,000 to 1000 are represented in
  1500.     decibels, and are of a logarithmic scale, not linear, wheras float values are always linear.
  1501.    
  1502.     The numerical values listed below are the maximum, minimum and default values for each variable respectively.
  1503.    
  1504.     <b>SUPPORTED</b> next to each parameter means the platform the parameter can be set on.  Some platforms support all parameters and some don't.
  1505.     WII   means Nintendo Wii hardware reverb (must use FMOD_HARDWARE).
  1506.     PSP   means Playstation Portable hardware reverb (must use FMOD_HARDWARE).
  1507.     SFX   means FMOD SFX software reverb.  This works on any platform that uses FMOD_SOFTWARE for loading sounds.
  1508.     ---   means unsupported/deprecated.  Will either be removed or supported by SFX in the future.
  1509.    
  1510.     Nintendo Wii Notes:
  1511.     This structure supports only limited parameters, and maps them to the Wii hardware reverb as follows.
  1512.     DecayTime = 'time'
  1513.     ReverbDelay = 'predelay'
  1514.     ModulationDepth = 'damping'
  1515.     Reflections = 'coloration'
  1516.     EnvDiffusion = 'crosstalk'
  1517.     Room = 'mix'
  1518.    
  1519.     Members marked with [r] mean the variable is modified by FMOD and is for reading purposes only.  Do not change this value.
  1520.     Members marked with [w] mean the variable can be written to.  The user can set the value.
  1521.     Members marked with [r/w] are either read or write depending on if you are using System::setReverbProperties (w) or System::getReverbProperties (r).
  1522.  
  1523.     [PLATFORMS]
  1524.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1525.  
  1526.     [SEE_ALSO]
  1527.     System::setReverbProperties
  1528.     System::getReverbProperties
  1529.     FMOD_REVERB_PRESETS
  1530.     FMOD_REVERB_FLAGS
  1531. ]
  1532. */
  1533. typedef struct FMOD_REVERB_PROPERTIES
  1534. {                                   /*       MIN    MAX     DEFAULT DESCRIPTION */
  1535.     int          Instance;          /* [w]   0      3       0       Environment Instance.                                                 (SUPPORTED:SFX(4 instances) and Wii (3 instances)) */
  1536.     int          Environment;       /* [r/w] -1     25      -1      Sets all listener properties.  -1 = OFF.                              (SUPPORTED:SFX(-1 only)/PSP) */
  1537.     float        EnvDiffusion;      /* [r/w] 0.0    1.0     1.0     Environment diffusion                                                 (SUPPORTED:WII) */
  1538.     int          Room;              /* [r/w] -10000 0       -1000   Room effect level (at mid frequencies)                                (SUPPORTED:SFX/WII/PSP) */
  1539.     int          RoomHF;            /* [r/w] -10000 0       -100    Relative room effect level at high frequencies                        (SUPPORTED:SFX) */
  1540.     int          RoomLF;            /* [r/w] -10000 0       0       Relative room effect level at low frequencies                         (SUPPORTED:SFX) */
  1541.     float        DecayTime;         /* [r/w] 0.1    20.0    1.49    Reverberation decay time at mid frequencies                           (SUPPORTED:SFX/WII) */
  1542.     float        DecayHFRatio;      /* [r/w] 0.1    2.0     0.83    High-frequency to mid-frequency decay time ratio                      (SUPPORTED:SFX) */
  1543.     float        DecayLFRatio;      /* [r/w] 0.1    2.0     1.0     Low-frequency to mid-frequency decay time ratio                       (SUPPORTED:---) */
  1544.     int          Reflections;       /* [r/w] -10000 1000    -2602   Early reflections level relative to room effect                       (SUPPORTED:SFX/WII) */
  1545.     float        ReflectionsDelay;  /* [r/w] 0.0    0.3     0.007   Initial reflection delay time                                         (SUPPORTED:SFX) */
  1546.     int          Reverb;            /* [r/w] -10000 2000    200     Late reverberation level relative to room effect                      (SUPPORTED:SFX) */
  1547.     float        ReverbDelay;       /* [r/w] 0.0    0.1     0.011   Late reverberation delay time relative to initial reflection          (SUPPORTED:SFX/WII) */
  1548.     float        ModulationTime;    /* [r/w] 0.04   4.0     0.25    Modulation time                                                       (SUPPORTED:---) */
  1549.     float        ModulationDepth;   /* [r/w] 0.0    1.0     0.0     Modulation depth                                                      (SUPPORTED:WII) */
  1550.     float        HFReference;       /* [r/w] 20.0   20000.0 5000.0  Reference high frequency (hz)                                         (SUPPORTED:SFX) */
  1551.     float        LFReference;       /* [r/w] 20.0   1000.0  250.0   Reference low frequency (hz)                                          (SUPPORTED:SFX) */
  1552.     float        Diffusion;         /* [r/w] 0.0    100.0   100.0   Value that controls the echo density in the late reverberation decay. (SUPPORTED:SFX) */
  1553.     float        Density;           /* [r/w] 0.0    100.0   100.0   Value that controls the modal density in the late reverberation decay (SUPPORTED:SFX) */
  1554.     unsigned int Flags;             /* [r/w] FMOD_REVERB_FLAGS - modifies the behavior of above properties                                (SUPPORTED:WII) */
  1555. } FMOD_REVERB_PROPERTIES;
  1556.  
  1557.  
  1558. /*
  1559. [DEFINE]
  1560. [
  1561.     [NAME]
  1562.     FMOD_REVERB_FLAGS
  1563.  
  1564.     [DESCRIPTION]
  1565.     Values for the Flags member of the FMOD_REVERB_PROPERTIES structure.
  1566.  
  1567.     [REMARKS]
  1568.  
  1569.     [PLATFORMS]
  1570.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1571.  
  1572.     [SEE_ALSO]
  1573.     FMOD_REVERB_PROPERTIES
  1574. ]
  1575. */
  1576. #define FMOD_REVERB_FLAGS_HIGHQUALITYREVERB     0x00000400 /* Wii. Use high quality reverb */
  1577. #define FMOD_REVERB_FLAGS_HIGHQUALITYDPL2REVERB 0x00000800 /* Wii. Use high quality DPL2 reverb */
  1578. #define FMOD_REVERB_FLAGS_HARDWAREONLY          0x00001000 /* Don't create an SFX reverb for FMOD_SOFTWARE channels, hardware reverb only */
  1579. #define FMOD_REVERB_FLAGS_DEFAULT               0x00000000
  1580. /* [DEFINE_END] */
  1581.  
  1582.  
  1583. /*
  1584. [DEFINE]
  1585. [
  1586.     [NAME]
  1587.     FMOD_REVERB_PRESETS
  1588.  
  1589.     [DESCRIPTION]  
  1590.     A set of predefined environment PARAMETERS.
  1591.     These are used to initialize an FMOD_REVERB_PROPERTIES structure statically.
  1592.     i.e.
  1593.     FMOD_REVERB_PROPERTIES prop = FMOD_PRESET_GENERIC;
  1594.  
  1595.     [REMARKS]
  1596.  
  1597.     [PLATFORMS]
  1598.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1599.  
  1600.     [SEE_ALSO]
  1601.     System::setReverbProperties
  1602. ]
  1603. */
  1604. /*                                    Inst Env  Diffus  Room   RoomHF  RmLF DecTm   DecHF  DecLF   Refl  RefDel   Revb  RevDel  ModTm  ModDp   HFRef    LFRef   Diffus  Densty  FLAGS */
  1605. #define FMOD_PRESET_OFF              {  0, -1,  1.00f, -10000, -10000, 0,   1.00f,  1.00f, 1.0f,  -2602, 0.007f,   200, 0.011f, 0.25f, 0.000f, 5000.0f, 250.0f,   0.0f,   0.0f, 0x33f }
  1606. #define FMOD_PRESET_GENERIC          {  0,  0,  1.00f, -1000,  -100,   0,   1.49f,  0.83f, 1.0f,  -2602, 0.007f,   200, 0.011f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1607. #define FMOD_PRESET_PADDEDCELL       {  0,  1,  1.00f, -1000,  -6000,  0,   0.17f,  0.10f, 1.0f,  -1204, 0.001f,   207, 0.002f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1608. #define FMOD_PRESET_ROOM             {  0,  2,  1.00f, -1000,  -454,   0,   0.40f,  0.83f, 1.0f,  -1646, 0.002f,    53, 0.003f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1609. #define FMOD_PRESET_BATHROOM         {  0,  3,  1.00f, -1000,  -1200,  0,   1.49f,  0.54f, 1.0f,   -370, 0.007f,  1030, 0.011f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f,  60.0f, 0x3f }
  1610. #define FMOD_PRESET_LIVINGROOM       {  0,  4,  1.00f, -1000,  -6000,  0,   0.50f,  0.10f, 1.0f,  -1376, 0.003f, -1104, 0.004f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1611. #define FMOD_PRESET_STONEROOM        {  0,  5,  1.00f, -1000,  -300,   0,   2.31f,  0.64f, 1.0f,   -711, 0.012f,    83, 0.017f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1612. #define FMOD_PRESET_AUDITORIUM       {  0,  6,  1.00f, -1000,  -476,   0,   4.32f,  0.59f, 1.0f,   -789, 0.020f,  -289, 0.030f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1613. #define FMOD_PRESET_CONCERTHALL      {  0,  7,  1.00f, -1000,  -500,   0,   3.92f,  0.70f, 1.0f,  -1230, 0.020f,    -2, 0.029f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1614. #define FMOD_PRESET_CAVE             {  0,  8,  1.00f, -1000,  0,      0,   2.91f,  1.30f, 1.0f,   -602, 0.015f,  -302, 0.022f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x1f }
  1615. #define FMOD_PRESET_ARENA            {  0,  9,  1.00f, -1000,  -698,   0,   7.24f,  0.33f, 1.0f,  -1166, 0.020f,    16, 0.030f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1616. #define FMOD_PRESET_HANGAR           {  0,  10, 1.00f, -1000,  -1000,  0,   10.05f, 0.23f, 1.0f,   -602, 0.020f,   198, 0.030f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1617. #define FMOD_PRESET_CARPETTEDHALLWAY {  0,  11, 1.00f, -1000,  -4000,  0,   0.30f,  0.10f, 1.0f,  -1831, 0.002f, -1630, 0.030f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1618. #define FMOD_PRESET_HALLWAY          {  0,  12, 1.00f, -1000,  -300,   0,   1.49f,  0.59f, 1.0f,  -1219, 0.007f,   441, 0.011f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1619. #define FMOD_PRESET_STONECORRIDOR    {  0,  13, 1.00f, -1000,  -237,   0,   2.70f,  0.79f, 1.0f,  -1214, 0.013f,   395, 0.020f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1620. #define FMOD_PRESET_ALLEY            {  0,  14, 0.30f, -1000,  -270,   0,   1.49f,  0.86f, 1.0f,  -1204, 0.007f,    -4, 0.011f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1621. #define FMOD_PRESET_FOREST           {  0,  15, 0.30f, -1000,  -3300,  0,   1.49f,  0.54f, 1.0f,  -2560, 0.162f,  -229, 0.088f, 0.25f, 0.000f, 5000.0f, 250.0f,  79.0f, 100.0f, 0x3f }
  1622. #define FMOD_PRESET_CITY             {  0,  16, 0.50f, -1000,  -800,   0,   1.49f,  0.67f, 1.0f,  -2273, 0.007f, -1691, 0.011f, 0.25f, 0.000f, 5000.0f, 250.0f,  50.0f, 100.0f, 0x3f }
  1623. #define FMOD_PRESET_MOUNTAINS        {  0,  17, 0.27f, -1000,  -2500,  0,   1.49f,  0.21f, 1.0f,  -2780, 0.300f, -1434, 0.100f, 0.25f, 0.000f, 5000.0f, 250.0f,  27.0f, 100.0f, 0x1f }
  1624. #define FMOD_PRESET_QUARRY           {  0,  18, 1.00f, -1000,  -1000,  0,   1.49f,  0.83f, 1.0f, -10000, 0.061f,   500, 0.025f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1625. #define FMOD_PRESET_PLAIN            {  0,  19, 0.21f, -1000,  -2000,  0,   1.49f,  0.50f, 1.0f,  -2466, 0.179f, -1926, 0.100f, 0.25f, 0.000f, 5000.0f, 250.0f,  21.0f, 100.0f, 0x3f }
  1626. #define FMOD_PRESET_PARKINGLOT       {  0,  20, 1.00f, -1000,  0,      0,   1.65f,  1.50f, 1.0f,  -1363, 0.008f, -1153, 0.012f, 0.25f, 0.000f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x1f }
  1627. #define FMOD_PRESET_SEWERPIPE        {  0,  21, 0.80f, -1000,  -1000,  0,   2.81f,  0.14f, 1.0f,    429, 0.014f,  1023, 0.021f, 0.25f, 0.000f, 5000.0f, 250.0f,  80.0f,  60.0f, 0x3f }
  1628. #define FMOD_PRESET_UNDERWATER       {  0,  22, 1.00f, -1000,  -4000,  0,   1.49f,  0.10f, 1.0f,   -449, 0.007f,  1700, 0.011f, 1.18f, 0.348f, 5000.0f, 250.0f, 100.0f, 100.0f, 0x3f }
  1629.  
  1630. /* PlayStation Portable Only presets */
  1631. #define FMOD_PRESET_PSP_ROOM         {  0,  1,  0,     0,      0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f,     0, 0.000f, 0.00f, 0.000f, 0000.0f,   0.0f,  0.0f,    0.0f, 0x31f }
  1632. #define FMOD_PRESET_PSP_STUDIO_A     {  0,  2,  0,     0,      0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f,     0, 0.000f, 0.00f, 0.000f, 0000.0f,   0.0f,  0.0f,    0.0f, 0x31f }
  1633. #define FMOD_PRESET_PSP_STUDIO_B     {  0,  3,  0,     0,      0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f,     0, 0.000f, 0.00f, 0.000f, 0000.0f,   0.0f,  0.0f,    0.0f, 0x31f }
  1634. #define FMOD_PRESET_PSP_STUDIO_C     {  0,  4,  0,     0,      0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f,     0, 0.000f, 0.00f, 0.000f, 0000.0f,   0.0f,  0.0f,    0.0f, 0x31f }
  1635. #define FMOD_PRESET_PSP_HALL         {  0,  5,  0,     0,      0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f,     0, 0.000f, 0.00f, 0.000f, 0000.0f,   0.0f,  0.0f,    0.0f, 0x31f }
  1636. #define FMOD_PRESET_PSP_SPACE        {  0,  6,  0,     0,      0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f,     0, 0.000f, 0.00f, 0.000f, 0000.0f,   0.0f,  0.0f,    0.0f, 0x31f }
  1637. #define FMOD_PRESET_PSP_ECHO         {  0,  7,  0,     0,      0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f,     0, 0.000f, 0.00f, 0.000f, 0000.0f,   0.0f,  0.0f,    0.0f, 0x31f }
  1638. #define FMOD_PRESET_PSP_DELAY        {  0,  8,  0,     0,      0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f,     0, 0.000f, 0.00f, 0.000f, 0000.0f,   0.0f,  0.0f,    0.0f, 0x31f }
  1639. #define FMOD_PRESET_PSP_PIPE         {  0,  9,  0,     0,      0,      0,   0.0f,   0.0f,  0.0f,     0,  0.000f,     0, 0.000f, 0.00f, 0.000f, 0000.0f,   0.0f,  0.0f,    0.0f, 0x31f }
  1640. /* [DEFINE_END] */
  1641.  
  1642.  
  1643. /*
  1644. [STRUCTURE]
  1645. [
  1646.     [DESCRIPTION]
  1647.     Structure defining the properties for a reverb source, related to a FMOD channel.
  1648.    
  1649.     Note the default reverb properties are the same as the FMOD_PRESET_GENERIC preset.
  1650.     Note that integer values that typically range from -10,000 to 1000 are represented in
  1651.     decibels, and are of a logarithmic scale, not linear, wheras float values are typically linear.
  1652.     PORTABILITY: Each member has the platform it supports in braces ie (win32/wii).
  1653.    
  1654.     The numerical values listed below are the maximum, minimum and default values for each variable respectively.
  1655.  
  1656.     [REMARKS]
  1657.     <b>SUPPORTED</b> next to each parameter means the platform the parameter can be set on.  Some platforms support all parameters and some don't.
  1658.     WII   means Nintendo Wii hardware reverb (must use FMOD_HARDWARE).
  1659.     PSP   means Playstation Portable hardware reverb (must use FMOD_HARDWARE).
  1660.     SFX   means FMOD SFX software reverb.  This works on any platform that uses FMOD_SOFTWARE for loading sounds.
  1661.     ---   means unsupported/deprecated.  Will either be removed or supported by SFX in the future.
  1662.    
  1663.    
  1664.     <b>'ConnectionPoint' Parameter.</b>  This parameter is for the FMOD software reverb only (known as SFX in the list above).
  1665.     By default the dsp network connection for a channel and its reverb is between the 'SFX Reverb' unit, and the channel's wavetable/resampler/dspcodec/oscillator unit (the unit below the channel DSP head).  NULL can be used for this parameter to make it use this default behaviour.
  1666.     This parameter allows the user to connect the SFX reverb to somewhere else internally, for example the channel DSP head, or a related channelgroup.  The event system uses this so that it can have the output of an event going to the reverb, instead of just the output of the event's channels (thereby ignoring event effects/submixes etc).
  1667.     Do not use if you are unaware of DSP network connection issues.  Leave it at the default of NULL instead.
  1668.    
  1669.     Members marked with [r] mean the variable is modified by FMOD and is for reading purposes only.  Do not change this value.
  1670.     Members marked with [w] mean the variable can be written to.  The user can set the value.
  1671.     Members marked with [r/w] are either read or write depending on if you are using Channel::setReverbProperties (w) or Channel::getReverbProperties (r).
  1672.  
  1673.     [PLATFORMS]
  1674.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1675.  
  1676.     [SEE_ALSO]
  1677.     Channel::setReverbProperties
  1678.     Channel::getReverbProperties
  1679.     FMOD_REVERB_CHANNELFLAGS
  1680. ]
  1681. */
  1682. typedef struct FMOD_REVERB_CHANNELPROPERTIES
  1683. {                                      /*       MIN    MAX  DEFAULT  DESCRIPTION */
  1684.     int          Direct;               /* [r/w] -10000 1000 0        Direct path level                                        (SUPPORTED:SFX) */
  1685.     int          Room;                 /* [r/w] -10000 1000 0        Room effect level                                        (SUPPORTED:SFX) */
  1686.     unsigned int Flags;                /* [r/w] FMOD_REVERB_CHANNELFLAGS - modifies the behavior of properties                (SUPPORTED:SFX) */
  1687.     FMOD_DSP    *ConnectionPoint;      /* [r/w] See remarks.         DSP network location to connect reverb for this channel. (SUPPORTED:SFX).*/
  1688. } FMOD_REVERB_CHANNELPROPERTIES;
  1689.  
  1690.  
  1691. /*
  1692. [DEFINE]
  1693. [
  1694.     [NAME]
  1695.     FMOD_REVERB_CHANNELFLAGS
  1696.  
  1697.     [DESCRIPTION]
  1698.     Values for the Flags member of the FMOD_REVERB_CHANNELPROPERTIES structure.
  1699.  
  1700.     [REMARKS]
  1701.     For SFX Reverb, there is support for multiple reverb environments.
  1702.     Use FMOD_REVERB_CHANNELFLAGS_ENVIRONMENT0 to FMOD_REVERB_CHANNELFLAGS_ENVIRONMENT3 in the flags member
  1703.     of FMOD_REVERB_CHANNELPROPERTIES to specify which environment instance(s) to target.
  1704.     - If you do not specify any instance the first reverb instance will be used.
  1705.     - If you specify more than one instance with getReverbProperties, the first instance will be used.
  1706.     - If you specify more than one instance with setReverbProperties, it will set more than 1 instance at once.
  1707.  
  1708.     [PLATFORMS]
  1709.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1710.  
  1711.     [SEE_ALSO]
  1712.     FMOD_REVERB_CHANNELPROPERTIES
  1713. ]
  1714. */
  1715. #define FMOD_REVERB_CHANNELFLAGS_INSTANCE0     0x00000010 /* SFX/Wii. Specify channel to target reverb instance 0.  Default target. */
  1716. #define FMOD_REVERB_CHANNELFLAGS_INSTANCE1     0x00000020 /* SFX/Wii. Specify channel to target reverb instance 1. */
  1717. #define FMOD_REVERB_CHANNELFLAGS_INSTANCE2     0x00000040 /* SFX/Wii. Specify channel to target reverb instance 2. */
  1718. #define FMOD_REVERB_CHANNELFLAGS_INSTANCE3     0x00000080 /* SFX. Specify channel to target reverb instance 3. */
  1719.  
  1720. #define FMOD_REVERB_CHANNELFLAGS_DEFAULT       FMOD_REVERB_CHANNELFLAGS_INSTANCE0
  1721. /* [DEFINE_END] */
  1722.  
  1723.  
  1724. /*
  1725. [STRUCTURE]
  1726. [
  1727.     [DESCRIPTION]
  1728.     Settings for advanced features like configuring memory and cpu usage for the FMOD_CREATECOMPRESSEDSAMPLE feature.
  1729.  
  1730.     [REMARKS]
  1731.     maxMPEGcodecs / maxADPCMcodecs / maxXMAcodecs will determine the maximum cpu usage of playing realtime samples.  Use this to lower potential excess cpu usage and also control memory usage.
  1732.    
  1733.     maxPCMcodecs is for use with PS3 only. It will determine the maximum number of PCM voices that can be played at once. This includes streams of any format and all sounds created
  1734.     *without* the FMOD_CREATECOMPRESSEDSAMPLE flag.
  1735.    
  1736.     Memory will be allocated for codecs 'up front' (during System::init) if these values are specified as non zero.  If any are zero, it allocates memory for the codec whenever a file of the type in question is loaded.  So if maxMPEGcodecs is 0 for example, it will allocate memory for the mpeg codecs the first time an mp3 is loaded or an mp3 based .FSB file is loaded.
  1737.    
  1738.     Due to inefficient encoding techniques on certain .wav based ADPCM files, FMOD can can need an extra 29720 bytes per codec.  This means for lowest memory consumption.  Use FSB as it uses an optimal/small ADPCM block size.
  1739.    
  1740.     Members marked with [r] mean the variable is modified by FMOD and is for reading purposes only.  Do not change this value.
  1741.     Members marked with [w] mean the variable can be written to.  The user can set the value.
  1742.     Members marked with [r/w] are either read or write depending on if you are using System::setAdvancedSettings (w) or System::getAdvancedSettings (r).
  1743.  
  1744.     [PLATFORMS]
  1745.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1746.  
  1747.     [SEE_ALSO]
  1748.     System::setAdvancedSettings
  1749.     System::getAdvancedSettings
  1750.     System::init
  1751.     FMOD_MODE
  1752. ]
  1753. */
  1754. typedef struct FMOD_ADVANCEDSETTINGS
  1755. {                      
  1756.     int             cbsize;                     /* [w]   Size of this structure.  Use sizeof(FMOD_ADVANCEDSETTINGS)  NOTE: This must be set before calling System::getAdvancedSettings! */
  1757.     int             maxMPEGcodecs;              /* [r/w] Optional. Specify 0 to ignore. For use with FMOD_CREATECOMPRESSEDSAMPLE only.  Mpeg  codecs consume 21,684 bytes per instance and this number will determine how many mpeg channels can be played simultaneously.   Default = 32. */
  1758.     int             maxADPCMcodecs;             /* [r/w] Optional. Specify 0 to ignore. For use with FMOD_CREATECOMPRESSEDSAMPLE only.  ADPCM codecs consume  2,136 bytes per instance and this number will determine how many ADPCM channels can be played simultaneously.  Default = 32. */
  1759.     int             maxXMAcodecs;               /* [r/w] Optional. Specify 0 to ignore. For use with FMOD_CREATECOMPRESSEDSAMPLE only.  XMA   codecs consume 14,836 bytes per instance and this number will determine how many XMA channels can be played simultaneously.    Default = 32. */
  1760.     int             maxCELTcodecs;              /* [r/w] Optional. Specify 0 to ignore. For use with FMOD_CREATECOMPRESSEDSAMPLE only.  CELT  codecs consume 11,500 bytes per instance and this number will determine how many CELT channels can be played simultaneously.   Default = 32. */    
  1761.     int             maxVORBIScodecs;            /* [r/w] Optional. Specify 0 to ignore. For use with FMOD_CREATECOMPRESSEDSAMPLE only.  Vorbis codecs consume 12,000 bytes per instance and this number will determine how many Vorbis channels can be played simultaneously. Default = 32. */    
  1762.     int             maxPCMcodecs;               /* [r/w] Optional. Specify 0 to ignore. For use with PS3 only.                          PCM   codecs consume 12,672 bytes per instance and this number will determine how many streams and PCM voices can be played simultaneously. Default = 16. */
  1763.     int             ASIONumChannels;            /* [r/w] Optional. Specify 0 to ignore. Number of channels available on the ASIO device. */
  1764.     char          **ASIOChannelList;            /* [r/w] Optional. Specify 0 to ignore. Pointer to an array of strings (number of entries defined by ASIONumChannels) with ASIO channel names. */
  1765.     FMOD_SPEAKER   *ASIOSpeakerList;            /* [r/w] Optional. Specify 0 to ignore. Pointer to a list of speakers that the ASIO channels map to.  This can be called after System::init to remap ASIO output. */
  1766.     int             max3DReverbDSPs;            /* [r/w] Optional. Specify 0 to ignore. The max number of 3d reverb DSP's in the system. (NOTE: CURRENTLY DISABLED / UNUSED) */
  1767.     float           HRTFMinAngle;               /* [r/w] Optional.                      For use with FMOD_INIT_HRTF_LOWPASS.  The angle range (0-360) of a 3D sound in relation to the listener, at which the HRTF function begins to have an effect. 0 = in front of the listener. 180 = from 90 degrees to the left of the listener to 90 degrees to the right. 360 = behind the listener. Default = 180.0. */
  1768.     float           HRTFMaxAngle;               /* [r/w] Optional.                      For use with FMOD_INIT_HRTF_LOWPASS.  The angle range (0-360) of a 3D sound in relation to the listener, at which the HRTF function has maximum effect. 0 = front of the listener. 180 = from 90 degrees to the left of the listener to 90 degrees to the right. 360 = behind the listener. Default = 360.0. */
  1769.     float           HRTFFreq;                   /* [r/w] Optional. Specify 0 to ignore. For use with FMOD_INIT_HRTF_LOWPASS.  The cutoff frequency of the HRTF's lowpass filter function when at maximum effect. (i.e. at HRTFMaxAngle).  Default = 4000.0. */
  1770.     float           vol0virtualvol;             /* [r/w] Optional. Specify 0 to ignore. For use with FMOD_INIT_VOL0_BECOMES_VIRTUAL.  If this flag is used, and the volume is 0.0, then the sound will become virtual.  Use this value to raise the threshold to a different point where a sound goes virtual. */
  1771.     int             eventqueuesize;             /* [r/w] Optional. Specify 0 to ignore. For use with FMOD Event system only.  Specifies the number of slots available for simultaneous non blocking loads, across all threads.  Default = 32. */
  1772.     unsigned int    defaultDecodeBufferSize;    /* [r/w] Optional. Specify 0 to ignore. For streams. This determines the default size of the double buffer (in milliseconds) that a stream uses.  Default = 400ms */
  1773.     char           *debugLogFilename;           /* [r/w] Optional. Specify 0 to ignore. Gives fmod's logging system a path/filename.  Normally the log is placed in the same directory as the executable and called fmod.log. When using System::getAdvancedSettings, provide at least 256 bytes of memory to copy into. */
  1774.     unsigned short  profileport;                /* [r/w] Optional. Specify 0 to ignore. For use with FMOD_INIT_ENABLE_PROFILE.  Specify the port to listen on for connections by the profiler application. */
  1775.     unsigned int    geometryMaxFadeTime;        /* [r/w] Optional. Specify 0 to ignore. The maximum time in miliseconds it takes for a channel to fade to the new level when its occlusion changes. */
  1776.     unsigned int    maxSpectrumWaveDataBuffers; /* [r/w] Optional. Specify 0 to ignore. Tells System::init to allocate a pool of wavedata/spectrum buffers to prevent memory fragmentation, any additional buffers will be allocated normally. */
  1777.     unsigned int    musicSystemCacheDelay;      /* [r/w] Optional. Specify 0 to ignore. The delay the music system should allow for loading a sample from disk (in milliseconds). Default = 400 ms. */
  1778.     float           distanceFilterCenterFreq;   /* [r/w] Optional. Specify 0 to ignore. For use with FMOD_INIT_DISTANCE_FILTERING.  The default center frequency in Hz for the distance filtering effect. Default = 1500.0. */
  1779.     unsigned int    stackSizeStream;            /* [r/w] Optional. Specify 0 to ignore. Specify the stack size for the FMOD Stream thread in bytes.  Useful for custom codecs that use excess stack.  Default 49,152 (48kb) */
  1780.     unsigned int    stackSizeNonBlocking;       /* [r/w] Optional. Specify 0 to ignore. Specify the stack size for the FMOD_NONBLOCKING loading thread.  Useful for custom codecs that use excess stack.  Default 65,536 (64kb) */
  1781.     unsigned int    stackSizeMixer;             /* [r/w] Optional. Specify 0 to ignore. Specify the stack size for the FMOD mixer thread.  Useful for custom dsps that use excess stack.  Default 49,152 (48kb) */
  1782. } FMOD_ADVANCEDSETTINGS;
  1783.  
  1784.  
  1785. /*
  1786. [ENUM]
  1787. [
  1788.     [DESCRIPTION]
  1789.     Special channel index values for FMOD functions.
  1790.  
  1791.     [REMARKS]
  1792.     To get 'all' of the channels, use System::getMasterChannelGroup.
  1793.  
  1794.     [PLATFORMS]
  1795.     Win32, Win64, Linux, Linux64, Macintosh, Xbox360, PlayStation Portable, PlayStation 3, Wii, iPhone, 3GS, NGP, Android
  1796.  
  1797.     [SEE_ALSO]
  1798.     System::playSound
  1799.     System::playDSP
  1800.     System::getChannel
  1801.     System::getMasterChannelGroup
  1802. ]
  1803. */
  1804. typedef enum
  1805. {
  1806.     FMOD_CHANNEL_FREE  = -1,      /* For a channel index, FMOD chooses a free voice using the priority system. */
  1807.     FMOD_CHANNEL_REUSE = -2       /* For a channel index, re-use the channel handle that was passed in. */
  1808. } FMOD_CHANNELINDEX;
  1809.  
  1810. #include "fmod_codec.h"
  1811. #include "fmod_dsp.h"
  1812. #include "fmod_memoryinfo.h"
  1813.  
  1814. /* ========================================================================================== */
  1815. /* FUNCTION PROTOTYPES                                                                        */
  1816. /* ========================================================================================== */
  1817.  
  1818. #ifdef __cplusplus
  1819. extern "C"
  1820. {
  1821. #endif
  1822.  
  1823. /*
  1824.     FMOD global system functions (optional).
  1825. */
  1826.  
  1827. FMOD_RESULT F_API FMOD_Memory_Initialize           (void *poolmem, int poollen, FMOD_MEMORY_ALLOCCALLBACK useralloc, FMOD_MEMORY_REALLOCCALLBACK userrealloc, FMOD_MEMORY_FREECALLBACK userfree, FMOD_MEMORY_TYPE memtypeflags);
  1828. FMOD_RESULT F_API FMOD_Memory_GetStats             (int *currentalloced, int *maxalloced, FMOD_BOOL blocking);
  1829. FMOD_RESULT F_API FMOD_Debug_SetLevel              (FMOD_DEBUGLEVEL level);
  1830. FMOD_RESULT F_API FMOD_Debug_GetLevel              (FMOD_DEBUGLEVEL *level);
  1831. FMOD_RESULT F_API FMOD_File_SetDiskBusy            (int busy);
  1832. FMOD_RESULT F_API FMOD_File_GetDiskBusy            (int *busy);
  1833.  
  1834. /*
  1835.     FMOD System factory functions.  Use this to create an FMOD System Instance.  below you will see FMOD_System_Init/Close to get started.
  1836. */
  1837.  
  1838. FMOD_RESULT F_API FMOD_System_Create               (FMOD_SYSTEM **system);
  1839. FMOD_RESULT F_API FMOD_System_Release              (FMOD_SYSTEM *system);
  1840.  
  1841.  
  1842. /*
  1843.     'System' API
  1844. */
  1845.  
  1846. /*
  1847.      Pre-init functions.
  1848. */
  1849.  
  1850. FMOD_RESULT F_API FMOD_System_SetOutput              (FMOD_SYSTEM *system, FMOD_OUTPUTTYPE output);
  1851. FMOD_RESULT F_API FMOD_System_GetOutput              (FMOD_SYSTEM *system, FMOD_OUTPUTTYPE *output);
  1852. FMOD_RESULT F_API FMOD_System_GetNumDrivers          (FMOD_SYSTEM *system, int *numdrivers);
  1853. FMOD_RESULT F_API FMOD_System_GetDriverInfo          (FMOD_SYSTEM *system, int id, char *name, int namelen, FMOD_GUID *guid);
  1854. FMOD_RESULT F_API FMOD_System_GetDriverInfoW         (FMOD_SYSTEM *system, int id, short *name, int namelen, FMOD_GUID *guid);
  1855. FMOD_RESULT F_API FMOD_System_GetDriverCaps          (FMOD_SYSTEM *system, int id, FMOD_CAPS *caps, int *controlpaneloutputrate, FMOD_SPEAKERMODE *controlpanelspeakermode);
  1856. FMOD_RESULT F_API FMOD_System_SetDriver              (FMOD_SYSTEM *system, int driver);
  1857. FMOD_RESULT F_API FMOD_System_GetDriver              (FMOD_SYSTEM *system, int *driver);
  1858. FMOD_RESULT F_API FMOD_System_SetHardwareChannels    (FMOD_SYSTEM *system, int numhardwarechannels);
  1859. FMOD_RESULT F_API FMOD_System_SetSoftwareChannels    (FMOD_SYSTEM *system, int numsoftwarechannels);
  1860. FMOD_RESULT F_API FMOD_System_GetSoftwareChannels    (FMOD_SYSTEM *system, int *numsoftwarechannels);
  1861. FMOD_RESULT F_API FMOD_System_SetSoftwareFormat      (FMOD_SYSTEM *system, int samplerate, FMOD_SOUND_FORMAT format, int numoutputchannels, int maxinputchannels, FMOD_DSP_RESAMPLER resamplemethod);
  1862. FMOD_RESULT F_API FMOD_System_GetSoftwareFormat      (FMOD_SYSTEM *system, int *samplerate, FMOD_SOUND_FORMAT *format, int *numoutputchannels, int *maxinputchannels, FMOD_DSP_RESAMPLER *resamplemethod, int *bits);
  1863. FMOD_RESULT F_API FMOD_System_SetDSPBufferSize       (FMOD_SYSTEM *system, unsigned int bufferlength, int numbuffers);
  1864. FMOD_RESULT F_API FMOD_System_GetDSPBufferSize       (FMOD_SYSTEM *system, unsigned int *bufferlength, int *numbuffers);
  1865. FMOD_RESULT F_API FMOD_System_SetFileSystem          (FMOD_SYSTEM *system, FMOD_FILE_OPENCALLBACK useropen, FMOD_FILE_CLOSECALLBACK userclose, FMOD_FILE_READCALLBACK userread, FMOD_FILE_SEEKCALLBACK userseek, FMOD_FILE_ASYNCREADCALLBACK userasyncread, FMOD_FILE_ASYNCCANCELCALLBACK userasynccancel, int blockalign);
  1866. FMOD_RESULT F_API FMOD_System_AttachFileSystem       (FMOD_SYSTEM *system, FMOD_FILE_OPENCALLBACK useropen, FMOD_FILE_CLOSECALLBACK userclose, FMOD_FILE_READCALLBACK userread, FMOD_FILE_SEEKCALLBACK userseek);
  1867. FMOD_RESULT F_API FMOD_System_SetAdvancedSettings    (FMOD_SYSTEM *system, FMOD_ADVANCEDSETTINGS *settings);
  1868. FMOD_RESULT F_API FMOD_System_GetAdvancedSettings    (FMOD_SYSTEM *system, FMOD_ADVANCEDSETTINGS *settings);
  1869. FMOD_RESULT F_API FMOD_System_SetSpeakerMode         (FMOD_SYSTEM *system, FMOD_SPEAKERMODE speakermode);
  1870. FMOD_RESULT F_API FMOD_System_GetSpeakerMode         (FMOD_SYSTEM *system, FMOD_SPEAKERMODE *speakermode);
  1871. FMOD_RESULT F_API FMOD_System_SetCallback            (FMOD_SYSTEM *system, FMOD_SYSTEM_CALLBACK callback);
  1872.  
  1873. /*
  1874.      Plug-in support                      
  1875. */
  1876.  
  1877. FMOD_RESULT F_API FMOD_System_SetPluginPath          (FMOD_SYSTEM *system, const char *path);
  1878. FMOD_RESULT F_API FMOD_System_LoadPlugin             (FMOD_SYSTEM *system, const char *filename, unsigned int *handle, unsigned int priority);
  1879. FMOD_RESULT F_API FMOD_System_UnloadPlugin           (FMOD_SYSTEM *system, unsigned int handle);
  1880. FMOD_RESULT F_API FMOD_System_GetNumPlugins          (FMOD_SYSTEM *system, FMOD_PLUGINTYPE plugintype, int *numplugins);
  1881. FMOD_RESULT F_API FMOD_System_GetPluginHandle        (FMOD_SYSTEM *system, FMOD_PLUGINTYPE plugintype, int index, unsigned int *handle);
  1882. FMOD_RESULT F_API FMOD_System_GetPluginInfo          (FMOD_SYSTEM *system, unsigned int handle, FMOD_PLUGINTYPE *plugintype, char *name, int namelen, unsigned int *version);
  1883. FMOD_RESULT F_API FMOD_System_SetOutputByPlugin      (FMOD_SYSTEM *system, unsigned int handle);
  1884. FMOD_RESULT F_API FMOD_System_GetOutputByPlugin      (FMOD_SYSTEM *system, unsigned int *handle);
  1885. FMOD_RESULT F_API FMOD_System_CreateDSPByPlugin      (FMOD_SYSTEM *system, unsigned int handle, FMOD_DSP **dsp);
  1886. FMOD_RESULT F_API FMOD_System_RegisterCodec          (FMOD_SYSTEM *system, FMOD_CODEC_DESCRIPTION *description, unsigned int *handle, unsigned int priority);
  1887. FMOD_RESULT F_API FMOD_System_RegisterDSP            (FMOD_SYSTEM *system, FMOD_DSP_DESCRIPTION *description, unsigned int *handle);
  1888.  
  1889. /*
  1890.      Init/Close                            
  1891. */
  1892.  
  1893. FMOD_RESULT F_API FMOD_System_Init                   (FMOD_SYSTEM *system, int maxchannels, FMOD_INITFLAGS flags, void *extradriverdata);
  1894. FMOD_RESULT F_API FMOD_System_Close                  (FMOD_SYSTEM *system);
  1895.  
  1896. /*
  1897.      General post-init system functions    
  1898. */
  1899.  
  1900. FMOD_RESULT F_API FMOD_System_Update                 (FMOD_SYSTEM *system);
  1901.  
  1902. FMOD_RESULT F_API FMOD_System_Set3DSettings          (FMOD_SYSTEM *system, float dopplerscale, float distancefactor, float rolloffscale);
  1903. FMOD_RESULT F_API FMOD_System_Get3DSettings          (FMOD_SYSTEM *system, float *dopplerscale, float *distancefactor, float *rolloffscale);
  1904. FMOD_RESULT F_API FMOD_System_Set3DNumListeners      (FMOD_SYSTEM *system, int numlisteners);
  1905. FMOD_RESULT F_API FMOD_System_Get3DNumListeners      (FMOD_SYSTEM *system, int *numlisteners);
  1906. FMOD_RESULT F_API FMOD_System_Set3DListenerAttributes(FMOD_SYSTEM *system, int listener, const FMOD_VECTOR *pos, const FMOD_VECTOR *vel, const FMOD_VECTOR *forward, const FMOD_VECTOR *up);
  1907. FMOD_RESULT F_API FMOD_System_Get3DListenerAttributes(FMOD_SYSTEM *system, int listener, FMOD_VECTOR *pos, FMOD_VECTOR *vel, FMOD_VECTOR *forward, FMOD_VECTOR *up);
  1908. FMOD_RESULT F_API FMOD_System_Set3DRolloffCallback   (FMOD_SYSTEM *system, FMOD_3D_ROLLOFFCALLBACK callback);
  1909. FMOD_RESULT F_API FMOD_System_Set3DSpeakerPosition   (FMOD_SYSTEM *system, FMOD_SPEAKER speaker, float x, float y, FMOD_BOOL active);
  1910. FMOD_RESULT F_API FMOD_System_Get3DSpeakerPosition   (FMOD_SYSTEM *system, FMOD_SPEAKER speaker, float *x, float *y, FMOD_BOOL *active);
  1911.  
  1912. FMOD_RESULT F_API FMOD_System_SetStreamBufferSize    (FMOD_SYSTEM *system, unsigned int filebuffersize, FMOD_TIMEUNIT filebuffersizetype);
  1913. FMOD_RESULT F_API FMOD_System_GetStreamBufferSize    (FMOD_SYSTEM *system, unsigned int *filebuffersize, FMOD_TIMEUNIT *filebuffersizetype);
  1914.  
  1915. /*
  1916.      System information functions.        
  1917. */
  1918.  
  1919. FMOD_RESULT F_API FMOD_System_GetVersion             (FMOD_SYSTEM *system, unsigned int *version);
  1920. FMOD_RESULT F_API FMOD_System_GetOutputHandle        (FMOD_SYSTEM *system, void **handle);
  1921. FMOD_RESULT F_API FMOD_System_GetChannelsPlaying     (FMOD_SYSTEM *system, int *channels);
  1922. FMOD_RESULT F_API FMOD_System_GetHardwareChannels    (FMOD_SYSTEM *system, int *numhardwarechannels);
  1923. FMOD_RESULT F_API FMOD_System_GetCPUUsage            (FMOD_SYSTEM *system, float *dsp, float *stream, float *geometry, float *update, float *total);
  1924. FMOD_RESULT F_API FMOD_System_GetSoundRAM            (FMOD_SYSTEM *system, int *currentalloced, int *maxalloced, int *total);
  1925. FMOD_RESULT F_API FMOD_System_GetNumCDROMDrives      (FMOD_SYSTEM *system, int *numdrives);
  1926. FMOD_RESULT F_API FMOD_System_GetCDROMDriveName      (FMOD_SYSTEM *system, int drive, char *drivename, int drivenamelen, char *scsiname, int scsinamelen, char *devicename, int devicenamelen);
  1927. FMOD_RESULT F_API FMOD_System_GetSpectrum            (FMOD_SYSTEM *system, float *spectrumarray, int numvalues, int channeloffset, FMOD_DSP_FFT_WINDOW windowtype);
  1928. FMOD_RESULT F_API FMOD_System_GetWaveData            (FMOD_SYSTEM *system, float *wavearray, int numvalues, int channeloffset);
  1929.  
  1930. /*
  1931.      Sound/DSP/Channel/FX creation and retrieval.      
  1932. */
  1933.  
  1934. FMOD_RESULT F_API FMOD_System_CreateSound            (FMOD_SYSTEM *system, const char *name_or_data, FMOD_MODE mode, FMOD_CREATESOUNDEXINFO *exinfo, FMOD_SOUND **sound);
  1935. FMOD_RESULT F_API FMOD_System_CreateStream           (FMOD_SYSTEM *system, const char *name_or_data, FMOD_MODE mode, FMOD_CREATESOUNDEXINFO *exinfo, FMOD_SOUND **sound);
  1936. FMOD_RESULT F_API FMOD_System_CreateDSP              (FMOD_SYSTEM *system, FMOD_DSP_DESCRIPTION *description, FMOD_DSP **dsp);
  1937. FMOD_RESULT F_API FMOD_System_CreateDSPByType        (FMOD_SYSTEM *system, FMOD_DSP_TYPE type, FMOD_DSP **dsp);
  1938. FMOD_RESULT F_API FMOD_System_CreateChannelGroup     (FMOD_SYSTEM *system, const char *name, FMOD_CHANNELGROUP **channelgroup);
  1939. FMOD_RESULT F_API FMOD_System_CreateSoundGroup       (FMOD_SYSTEM *system, const char *name, FMOD_SOUNDGROUP **soundgroup);
  1940. FMOD_RESULT F_API FMOD_System_CreateReverb           (FMOD_SYSTEM *system, FMOD_REVERB **reverb);
  1941.  
  1942. FMOD_RESULT F_API FMOD_System_PlaySound              (FMOD_SYSTEM *system, FMOD_CHANNELINDEX channelid, FMOD_SOUND *sound, FMOD_BOOL paused, FMOD_CHANNEL **channel);
  1943. FMOD_RESULT F_API FMOD_System_PlayDSP                (FMOD_SYSTEM *system, FMOD_CHANNELINDEX channelid, FMOD_DSP *dsp, FMOD_BOOL paused, FMOD_CHANNEL **channel);
  1944. FMOD_RESULT F_API FMOD_System_GetChannel             (FMOD_SYSTEM *system, int channelid, FMOD_CHANNEL **channel);
  1945. FMOD_RESULT F_API FMOD_System_GetMasterChannelGroup  (FMOD_SYSTEM *system, FMOD_CHANNELGROUP **channelgroup);
  1946. FMOD_RESULT F_API FMOD_System_GetMasterSoundGroup    (FMOD_SYSTEM *system, FMOD_SOUNDGROUP **soundgroup);
  1947.  
  1948. /*
  1949.      Reverb API                          
  1950. */
  1951.  
  1952. FMOD_RESULT F_API FMOD_System_SetReverbProperties    (FMOD_SYSTEM *system, const FMOD_REVERB_PROPERTIES *prop);
  1953. FMOD_RESULT F_API FMOD_System_GetReverbProperties    (FMOD_SYSTEM *system, FMOD_REVERB_PROPERTIES *prop);
  1954. FMOD_RESULT F_API FMOD_System_SetReverbAmbientProperties(FMOD_SYSTEM *system, FMOD_REVERB_PROPERTIES *prop);
  1955. FMOD_RESULT F_API FMOD_System_GetReverbAmbientProperties(FMOD_SYSTEM *system, FMOD_REVERB_PROPERTIES *prop);
  1956.  
  1957. /*
  1958.      System level DSP access.
  1959. */
  1960.  
  1961. FMOD_RESULT F_API FMOD_System_GetDSPHead             (FMOD_SYSTEM *system, FMOD_DSP **dsp);
  1962. FMOD_RESULT F_API FMOD_System_AddDSP                 (FMOD_SYSTEM *system, FMOD_DSP *dsp, FMOD_DSPCONNECTION **connection);
  1963. FMOD_RESULT F_API FMOD_System_LockDSP                (FMOD_SYSTEM *system);
  1964. FMOD_RESULT F_API FMOD_System_UnlockDSP              (FMOD_SYSTEM *system);
  1965. FMOD_RESULT F_API FMOD_System_GetDSPClock            (FMOD_SYSTEM *system, unsigned int *hi, unsigned int *lo);
  1966.  
  1967. /*
  1968.      Recording API.
  1969. */
  1970.  
  1971. FMOD_RESULT F_API FMOD_System_GetRecordNumDrivers    (FMOD_SYSTEM *system, int *numdrivers);
  1972. FMOD_RESULT F_API FMOD_System_GetRecordDriverInfo    (FMOD_SYSTEM *system, int id, char *name, int namelen, FMOD_GUID *guid);
  1973. FMOD_RESULT F_API FMOD_System_GetRecordDriverInfoW   (FMOD_SYSTEM *system, int id, short *name, int namelen, FMOD_GUID *guid);
  1974. FMOD_RESULT F_API FMOD_System_GetRecordDriverCaps    (FMOD_SYSTEM *system, int id, FMOD_CAPS *caps, int *minfrequency, int *maxfrequency);
  1975. FMOD_RESULT F_API FMOD_System_GetRecordPosition      (FMOD_SYSTEM *system, int id, unsigned int *position);
  1976.  
  1977. FMOD_RESULT F_API FMOD_System_RecordStart            (FMOD_SYSTEM *system, int id, FMOD_SOUND *sound, FMOD_BOOL loop);
  1978. FMOD_RESULT F_API FMOD_System_RecordStop             (FMOD_SYSTEM *system, int id);
  1979. FMOD_RESULT F_API FMOD_System_IsRecording            (FMOD_SYSTEM *system, int id, FMOD_BOOL *recording);
  1980.  
  1981. /*
  1982.      Geometry API.
  1983. */
  1984.  
  1985. FMOD_RESULT F_API FMOD_System_CreateGeometry         (FMOD_SYSTEM *system, int maxpolygons, int maxvertices, FMOD_GEOMETRY **geometry);
  1986. FMOD_RESULT F_API FMOD_System_SetGeometrySettings    (FMOD_SYSTEM *system, float maxworldsize);
  1987. FMOD_RESULT F_API FMOD_System_GetGeometrySettings    (FMOD_SYSTEM *system, float *maxworldsize);
  1988. FMOD_RESULT F_API FMOD_System_LoadGeometry           (FMOD_SYSTEM *system, const void *data, int datasize, FMOD_GEOMETRY **geometry);
  1989. FMOD_RESULT F_API FMOD_System_GetGeometryOcclusion   (FMOD_SYSTEM *system, const FMOD_VECTOR *listener, const FMOD_VECTOR *source, float *direct, float *reverb);
  1990.  
  1991. /*
  1992.      Network functions.
  1993. */
  1994.  
  1995. FMOD_RESULT F_API FMOD_System_SetNetworkProxy        (FMOD_SYSTEM *system, const char *proxy);
  1996. FMOD_RESULT F_API FMOD_System_GetNetworkProxy        (FMOD_SYSTEM *system, char *proxy, int proxylen);
  1997. FMOD_RESULT F_API FMOD_System_SetNetworkTimeout      (FMOD_SYSTEM *system, int timeout);
  1998. FMOD_RESULT F_API FMOD_System_GetNetworkTimeout      (FMOD_SYSTEM *system, int *timeout);
  1999.  
  2000. /*
  2001.      Userdata set/get.
  2002. */
  2003.  
  2004. FMOD_RESULT F_API FMOD_System_SetUserData            (FMOD_SYSTEM *system, void *userdata);
  2005. FMOD_RESULT F_API FMOD_System_GetUserData            (FMOD_SYSTEM *system, void **userdata);
  2006.  
  2007. FMOD_RESULT F_API FMOD_System_GetMemoryInfo          (FMOD_SYSTEM *system, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details);
  2008.  
  2009. /*
  2010.     'Sound' API
  2011. */
  2012.  
  2013. FMOD_RESULT F_API FMOD_Sound_Release                 (FMOD_SOUND *sound);
  2014. FMOD_RESULT F_API FMOD_Sound_GetSystemObject         (FMOD_SOUND *sound, FMOD_SYSTEM **system);
  2015.  
  2016. /*
  2017.      Standard sound manipulation functions.                                                
  2018. */
  2019.  
  2020. FMOD_RESULT F_API FMOD_Sound_Lock                    (FMOD_SOUND *sound, unsigned int offset, unsigned int length, void **ptr1, void **ptr2, unsigned int *len1, unsigned int *len2);
  2021. FMOD_RESULT F_API FMOD_Sound_Unlock                  (FMOD_SOUND *sound, void *ptr1, void *ptr2, unsigned int len1, unsigned int len2);
  2022. FMOD_RESULT F_API FMOD_Sound_SetDefaults             (FMOD_SOUND *sound, float frequency, float volume, float pan, int priority);
  2023. FMOD_RESULT F_API FMOD_Sound_GetDefaults             (FMOD_SOUND *sound, float *frequency, float *volume, float *pan, int *priority);
  2024. FMOD_RESULT F_API FMOD_Sound_SetVariations           (FMOD_SOUND *sound, float frequencyvar, float volumevar, float panvar);
  2025. FMOD_RESULT F_API FMOD_Sound_GetVariations           (FMOD_SOUND *sound, float *frequencyvar, float *volumevar, float *panvar);
  2026. FMOD_RESULT F_API FMOD_Sound_Set3DMinMaxDistance     (FMOD_SOUND *sound, float min, float max);
  2027. FMOD_RESULT F_API FMOD_Sound_Get3DMinMaxDistance     (FMOD_SOUND *sound, float *min, float *max);
  2028. FMOD_RESULT F_API FMOD_Sound_Set3DConeSettings       (FMOD_SOUND *sound, float insideconeangle, float outsideconeangle, float outsidevolume);
  2029. FMOD_RESULT F_API FMOD_Sound_Get3DConeSettings       (FMOD_SOUND *sound, float *insideconeangle, float *outsideconeangle, float *outsidevolume);
  2030. FMOD_RESULT F_API FMOD_Sound_Set3DCustomRolloff      (FMOD_SOUND *sound, FMOD_VECTOR *points, int numpoints);
  2031. FMOD_RESULT F_API FMOD_Sound_Get3DCustomRolloff      (FMOD_SOUND *sound, FMOD_VECTOR **points, int *numpoints);
  2032. FMOD_RESULT F_API FMOD_Sound_SetSubSound             (FMOD_SOUND *sound, int index, FMOD_SOUND *subsound);
  2033. FMOD_RESULT F_API FMOD_Sound_GetSubSound             (FMOD_SOUND *sound, int index, FMOD_SOUND **subsound);
  2034. FMOD_RESULT F_API FMOD_Sound_SetSubSoundSentence     (FMOD_SOUND *sound, int *subsoundlist, int numsubsounds);
  2035. FMOD_RESULT F_API FMOD_Sound_GetName                 (FMOD_SOUND *sound, char *name, int namelen);
  2036. FMOD_RESULT F_API FMOD_Sound_GetLength               (FMOD_SOUND *sound, unsigned int *length, FMOD_TIMEUNIT lengthtype);
  2037. FMOD_RESULT F_API FMOD_Sound_GetFormat               (FMOD_SOUND *sound, FMOD_SOUND_TYPE *type, FMOD_SOUND_FORMAT *format, int *channels, int *bits);
  2038. FMOD_RESULT F_API FMOD_Sound_GetNumSubSounds         (FMOD_SOUND *sound, int *numsubsounds);
  2039. FMOD_RESULT F_API FMOD_Sound_GetNumTags              (FMOD_SOUND *sound, int *numtags, int *numtagsupdated);
  2040. FMOD_RESULT F_API FMOD_Sound_GetTag                  (FMOD_SOUND *sound, const char *name, int index, FMOD_TAG *tag);
  2041. FMOD_RESULT F_API FMOD_Sound_GetOpenState            (FMOD_SOUND *sound, FMOD_OPENSTATE *openstate, unsigned int *percentbuffered, FMOD_BOOL *starving, FMOD_BOOL *diskbusy);
  2042. FMOD_RESULT F_API FMOD_Sound_ReadData                (FMOD_SOUND *sound, void *buffer, unsigned int lenbytes, unsigned int *read);
  2043. FMOD_RESULT F_API FMOD_Sound_SeekData                (FMOD_SOUND *sound, unsigned int pcm);
  2044.  
  2045. FMOD_RESULT F_API FMOD_Sound_SetSoundGroup           (FMOD_SOUND *sound, FMOD_SOUNDGROUP *soundgroup);
  2046. FMOD_RESULT F_API FMOD_Sound_GetSoundGroup           (FMOD_SOUND *sound, FMOD_SOUNDGROUP **soundgroup);
  2047.  
  2048. /*
  2049.      Synchronization point API.  These points can come from markers embedded in wav files, and can also generate channel callbacks.        
  2050. */
  2051.  
  2052. FMOD_RESULT F_API FMOD_Sound_GetNumSyncPoints        (FMOD_SOUND *sound, int *numsyncpoints);
  2053. FMOD_RESULT F_API FMOD_Sound_GetSyncPoint            (FMOD_SOUND *sound, int index, FMOD_SYNCPOINT **point);
  2054. FMOD_RESULT F_API FMOD_Sound_GetSyncPointInfo        (FMOD_SOUND *sound, FMOD_SYNCPOINT *point, char *name, int namelen, unsigned int *offset, FMOD_TIMEUNIT offsettype);
  2055. FMOD_RESULT F_API FMOD_Sound_AddSyncPoint            (FMOD_SOUND *sound, unsigned int offset, FMOD_TIMEUNIT offsettype, const char *name, FMOD_SYNCPOINT **point);
  2056. FMOD_RESULT F_API FMOD_Sound_DeleteSyncPoint         (FMOD_SOUND *sound, FMOD_SYNCPOINT *point);
  2057.  
  2058. /*
  2059.      Functions also in Channel class but here they are the 'default' to save having to change it in Channel all the time.
  2060. */
  2061.  
  2062. FMOD_RESULT F_API FMOD_Sound_SetMode                 (FMOD_SOUND *sound, FMOD_MODE mode);
  2063. FMOD_RESULT F_API FMOD_Sound_GetMode                 (FMOD_SOUND *sound, FMOD_MODE *mode);
  2064. FMOD_RESULT F_API FMOD_Sound_SetLoopCount            (FMOD_SOUND *sound, int loopcount);
  2065. FMOD_RESULT F_API FMOD_Sound_GetLoopCount            (FMOD_SOUND *sound, int *loopcount);
  2066. FMOD_RESULT F_API FMOD_Sound_SetLoopPoints           (FMOD_SOUND *sound, unsigned int loopstart, FMOD_TIMEUNIT loopstarttype, unsigned int loopend, FMOD_TIMEUNIT loopendtype);
  2067. FMOD_RESULT F_API FMOD_Sound_GetLoopPoints           (FMOD_SOUND *sound, unsigned int *loopstart, FMOD_TIMEUNIT loopstarttype, unsigned int *loopend, FMOD_TIMEUNIT loopendtype);
  2068.  
  2069. /*
  2070.      For MOD/S3M/XM/IT/MID sequenced formats only.
  2071. */
  2072.  
  2073. FMOD_RESULT F_API FMOD_Sound_GetMusicNumChannels     (FMOD_SOUND *sound, int *numchannels);
  2074. FMOD_RESULT F_API FMOD_Sound_SetMusicChannelVolume   (FMOD_SOUND *sound, int channel, float volume);
  2075. FMOD_RESULT F_API FMOD_Sound_GetMusicChannelVolume   (FMOD_SOUND *sound, int channel, float *volume);
  2076. FMOD_RESULT F_API FMOD_Sound_SetMusicSpeed           (FMOD_SOUND *sound, float speed);
  2077. FMOD_RESULT F_API FMOD_Sound_GetMusicSpeed           (FMOD_SOUND *sound, float *speed);
  2078.  
  2079. /*
  2080.      Userdata set/get.
  2081. */
  2082.  
  2083. FMOD_RESULT F_API FMOD_Sound_SetUserData             (FMOD_SOUND *sound, void *userdata);
  2084. FMOD_RESULT F_API FMOD_Sound_GetUserData             (FMOD_SOUND *sound, void **userdata);
  2085.  
  2086. FMOD_RESULT F_API FMOD_Sound_GetMemoryInfo           (FMOD_SOUND *sound, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details);
  2087.  
  2088. /*
  2089.     'Channel' API
  2090. */
  2091.  
  2092. FMOD_RESULT F_API FMOD_Channel_GetSystemObject       (FMOD_CHANNEL *channel, FMOD_SYSTEM **system);
  2093.  
  2094. FMOD_RESULT F_API FMOD_Channel_Stop                  (FMOD_CHANNEL *channel);
  2095. FMOD_RESULT F_API FMOD_Channel_SetPaused             (FMOD_CHANNEL *channel, FMOD_BOOL paused);
  2096. FMOD_RESULT F_API FMOD_Channel_GetPaused             (FMOD_CHANNEL *channel, FMOD_BOOL *paused);
  2097. FMOD_RESULT F_API FMOD_Channel_SetVolume             (FMOD_CHANNEL *channel, float volume);
  2098. FMOD_RESULT F_API FMOD_Channel_GetVolume             (FMOD_CHANNEL *channel, float *volume);
  2099. FMOD_RESULT F_API FMOD_Channel_SetFrequency          (FMOD_CHANNEL *channel, float frequency);
  2100. FMOD_RESULT F_API FMOD_Channel_GetFrequency          (FMOD_CHANNEL *channel, float *frequency);
  2101. FMOD_RESULT F_API FMOD_Channel_SetPan                (FMOD_CHANNEL *channel, float pan);
  2102. FMOD_RESULT F_API FMOD_Channel_GetPan                (FMOD_CHANNEL *channel, float *pan);
  2103. FMOD_RESULT F_API FMOD_Channel_SetDelay              (FMOD_CHANNEL *channel, FMOD_DELAYTYPE delaytype, unsigned int delayhi, unsigned int delaylo);
  2104. FMOD_RESULT F_API FMOD_Channel_GetDelay              (FMOD_CHANNEL *channel, FMOD_DELAYTYPE delaytype, unsigned int *delayhi, unsigned int *delaylo);
  2105. FMOD_RESULT F_API FMOD_Channel_SetSpeakerMix         (FMOD_CHANNEL *channel, float frontleft, float frontright, float center, float lfe, float backleft, float backright, float sideleft, float sideright);
  2106. FMOD_RESULT F_API FMOD_Channel_GetSpeakerMix         (FMOD_CHANNEL *channel, float *frontleft, float *frontright, float *center, float *lfe, float *backleft, float *backright, float *sideleft, float *sideright);
  2107. FMOD_RESULT F_API FMOD_Channel_SetSpeakerLevels      (FMOD_CHANNEL *channel, FMOD_SPEAKER speaker, float *levels, int numlevels);
  2108. FMOD_RESULT F_API FMOD_Channel_GetSpeakerLevels      (FMOD_CHANNEL *channel, FMOD_SPEAKER speaker, float *levels, int numlevels);
  2109. FMOD_RESULT F_API FMOD_Channel_SetInputChannelMix    (FMOD_CHANNEL *channel, float *levels, int numlevels);
  2110. FMOD_RESULT F_API FMOD_Channel_GetInputChannelMix    (FMOD_CHANNEL *channel, float *levels, int numlevels);
  2111. FMOD_RESULT F_API FMOD_Channel_SetMute               (FMOD_CHANNEL *channel, FMOD_BOOL mute);
  2112. FMOD_RESULT F_API FMOD_Channel_GetMute               (FMOD_CHANNEL *channel, FMOD_BOOL *mute);
  2113. FMOD_RESULT F_API FMOD_Channel_SetPriority           (FMOD_CHANNEL *channel, int priority);
  2114. FMOD_RESULT F_API FMOD_Channel_GetPriority           (FMOD_CHANNEL *channel, int *priority);
  2115. FMOD_RESULT F_API FMOD_Channel_SetPosition           (FMOD_CHANNEL *channel, unsigned int position, FMOD_TIMEUNIT postype);
  2116. FMOD_RESULT F_API FMOD_Channel_GetPosition           (FMOD_CHANNEL *channel, unsigned int *position, FMOD_TIMEUNIT postype);
  2117. FMOD_RESULT F_API FMOD_Channel_SetReverbProperties   (FMOD_CHANNEL *channel, const FMOD_REVERB_CHANNELPROPERTIES *prop);
  2118. FMOD_RESULT F_API FMOD_Channel_GetReverbProperties   (FMOD_CHANNEL *channel, FMOD_REVERB_CHANNELPROPERTIES *prop);
  2119. FMOD_RESULT F_API FMOD_Channel_SetLowPassGain        (FMOD_CHANNEL *channel, float gain);
  2120. FMOD_RESULT F_API FMOD_Channel_GetLowPassGain        (FMOD_CHANNEL *channel, float *gain);
  2121.  
  2122. FMOD_RESULT F_API FMOD_Channel_SetChannelGroup       (FMOD_CHANNEL *channel, FMOD_CHANNELGROUP *channelgroup);
  2123. FMOD_RESULT F_API FMOD_Channel_GetChannelGroup       (FMOD_CHANNEL *channel, FMOD_CHANNELGROUP **channelgroup);
  2124. FMOD_RESULT F_API FMOD_Channel_SetCallback           (FMOD_CHANNEL *channel, FMOD_CHANNEL_CALLBACK callback);
  2125.  
  2126. /*
  2127.      3D functionality.
  2128. */
  2129.  
  2130. FMOD_RESULT F_API FMOD_Channel_Set3DAttributes       (FMOD_CHANNEL *channel, const FMOD_VECTOR *pos, const FMOD_VECTOR *vel);
  2131. FMOD_RESULT F_API FMOD_Channel_Get3DAttributes       (FMOD_CHANNEL *channel, FMOD_VECTOR *pos, FMOD_VECTOR *vel);
  2132. FMOD_RESULT F_API FMOD_Channel_Set3DMinMaxDistance   (FMOD_CHANNEL *channel, float mindistance, float maxdistance);
  2133. FMOD_RESULT F_API FMOD_Channel_Get3DMinMaxDistance   (FMOD_CHANNEL *channel, float *mindistance, float *maxdistance);
  2134. FMOD_RESULT F_API FMOD_Channel_Set3DConeSettings     (FMOD_CHANNEL *channel, float insideconeangle, float outsideconeangle, float outsidevolume);
  2135. FMOD_RESULT F_API FMOD_Channel_Get3DConeSettings     (FMOD_CHANNEL *channel, float *insideconeangle, float *outsideconeangle, float *outsidevolume);
  2136. FMOD_RESULT F_API FMOD_Channel_Set3DConeOrientation  (FMOD_CHANNEL *channel, FMOD_VECTOR *orientation);
  2137. FMOD_RESULT F_API FMOD_Channel_Get3DConeOrientation  (FMOD_CHANNEL *channel, FMOD_VECTOR *orientation);
  2138. FMOD_RESULT F_API FMOD_Channel_Set3DCustomRolloff    (FMOD_CHANNEL *channel, FMOD_VECTOR *points, int numpoints);
  2139. FMOD_RESULT F_API FMOD_Channel_Get3DCustomRolloff    (FMOD_CHANNEL *channel, FMOD_VECTOR **points, int *numpoints);
  2140. FMOD_RESULT F_API FMOD_Channel_Set3DOcclusion        (FMOD_CHANNEL *channel, float directocclusion, float reverbocclusion);
  2141. FMOD_RESULT F_API FMOD_Channel_Get3DOcclusion        (FMOD_CHANNEL *channel, float *directocclusion, float *reverbocclusion);
  2142. FMOD_RESULT F_API FMOD_Channel_Set3DSpread           (FMOD_CHANNEL *channel, float angle);
  2143. FMOD_RESULT F_API FMOD_Channel_Get3DSpread           (FMOD_CHANNEL *channel, float *angle);
  2144. FMOD_RESULT F_API FMOD_Channel_Set3DPanLevel         (FMOD_CHANNEL *channel, float level);
  2145. FMOD_RESULT F_API FMOD_Channel_Get3DPanLevel         (FMOD_CHANNEL *channel, float *level);
  2146. FMOD_RESULT F_API FMOD_Channel_Set3DDopplerLevel     (FMOD_CHANNEL *channel, float level);
  2147. FMOD_RESULT F_API FMOD_Channel_Get3DDopplerLevel     (FMOD_CHANNEL *channel, float *level);
  2148. FMOD_RESULT F_API FMOD_Channel_Set3DDistanceFilter   (FMOD_CHANNEL *channel, FMOD_BOOL custom, float customLevel, float centerFreq);
  2149. FMOD_RESULT F_API FMOD_Channel_Get3DDistanceFilter   (FMOD_CHANNEL *channel, FMOD_BOOL *custom, float *customLevel, float *centerFreq);
  2150.  
  2151. /*
  2152.      DSP functionality only for channels playing sounds created with FMOD_SOFTWARE.
  2153. */
  2154.  
  2155. FMOD_RESULT F_API FMOD_Channel_GetDSPHead            (FMOD_CHANNEL *channel, FMOD_DSP **dsp);
  2156. FMOD_RESULT F_API FMOD_Channel_AddDSP                (FMOD_CHANNEL *channel, FMOD_DSP *dsp, FMOD_DSPCONNECTION **connection);
  2157.  
  2158. /*
  2159.      Information only functions.
  2160. */
  2161.  
  2162. FMOD_RESULT F_API FMOD_Channel_IsPlaying             (FMOD_CHANNEL *channel, FMOD_BOOL *isplaying);
  2163. FMOD_RESULT F_API FMOD_Channel_IsVirtual             (FMOD_CHANNEL *channel, FMOD_BOOL *isvirtual);
  2164. FMOD_RESULT F_API FMOD_Channel_GetAudibility         (FMOD_CHANNEL *channel, float *audibility);
  2165. FMOD_RESULT F_API FMOD_Channel_GetCurrentSound       (FMOD_CHANNEL *channel, FMOD_SOUND **sound);
  2166. FMOD_RESULT F_API FMOD_Channel_GetSpectrum           (FMOD_CHANNEL *channel, float *spectrumarray, int numvalues, int channeloffset, FMOD_DSP_FFT_WINDOW windowtype);
  2167. FMOD_RESULT F_API FMOD_Channel_GetWaveData           (FMOD_CHANNEL *channel, float *wavearray, int numvalues, int channeloffset);
  2168. FMOD_RESULT F_API FMOD_Channel_GetIndex              (FMOD_CHANNEL *channel, int *index);
  2169.  
  2170. /*
  2171.      Functions also found in Sound class but here they can be set per channel.
  2172. */
  2173.  
  2174. FMOD_RESULT F_API FMOD_Channel_SetMode               (FMOD_CHANNEL *channel, FMOD_MODE mode);
  2175. FMOD_RESULT F_API FMOD_Channel_GetMode               (FMOD_CHANNEL *channel, FMOD_MODE *mode);
  2176. FMOD_RESULT F_API FMOD_Channel_SetLoopCount          (FMOD_CHANNEL *channel, int loopcount);
  2177. FMOD_RESULT F_API FMOD_Channel_GetLoopCount          (FMOD_CHANNEL *channel, int *loopcount);
  2178. FMOD_RESULT F_API FMOD_Channel_SetLoopPoints         (FMOD_CHANNEL *channel, unsigned int loopstart, FMOD_TIMEUNIT loopstarttype, unsigned int loopend, FMOD_TIMEUNIT loopendtype);
  2179. FMOD_RESULT F_API FMOD_Channel_GetLoopPoints         (FMOD_CHANNEL *channel, unsigned int *loopstart, FMOD_TIMEUNIT loopstarttype, unsigned int *loopend, FMOD_TIMEUNIT loopendtype);
  2180.  
  2181. /*
  2182.      Userdata set/get.                                                
  2183. */
  2184.  
  2185. FMOD_RESULT F_API FMOD_Channel_SetUserData           (FMOD_CHANNEL *channel, void *userdata);
  2186. FMOD_RESULT F_API FMOD_Channel_GetUserData           (FMOD_CHANNEL *channel, void **userdata);
  2187.  
  2188. FMOD_RESULT F_API FMOD_Channel_GetMemoryInfo         (FMOD_CHANNEL *channel, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details);
  2189.  
  2190. /*
  2191.     'ChannelGroup' API
  2192. */
  2193.  
  2194. FMOD_RESULT F_API FMOD_ChannelGroup_Release          (FMOD_CHANNELGROUP *channelgroup);
  2195. FMOD_RESULT F_API FMOD_ChannelGroup_GetSystemObject  (FMOD_CHANNELGROUP *channelgroup, FMOD_SYSTEM **system);
  2196.  
  2197. /*
  2198.      Channelgroup scale values.  (changes attributes relative to the channels, doesn't overwrite them)
  2199. */
  2200.  
  2201. FMOD_RESULT F_API FMOD_ChannelGroup_SetVolume        (FMOD_CHANNELGROUP *channelgroup, float volume);
  2202. FMOD_RESULT F_API FMOD_ChannelGroup_GetVolume        (FMOD_CHANNELGROUP *channelgroup, float *volume);
  2203. FMOD_RESULT F_API FMOD_ChannelGroup_SetPitch         (FMOD_CHANNELGROUP *channelgroup, float pitch);
  2204. FMOD_RESULT F_API FMOD_ChannelGroup_GetPitch         (FMOD_CHANNELGROUP *channelgroup, float *pitch);
  2205. FMOD_RESULT F_API FMOD_ChannelGroup_Set3DOcclusion   (FMOD_CHANNELGROUP *channelgroup, float directocclusion, float reverbocclusion);
  2206. FMOD_RESULT F_API FMOD_ChannelGroup_Get3DOcclusion   (FMOD_CHANNELGROUP *channelgroup, float *directocclusion, float *reverbocclusion);
  2207. FMOD_RESULT F_API FMOD_ChannelGroup_SetPaused        (FMOD_CHANNELGROUP *channelgroup, FMOD_BOOL paused);
  2208. FMOD_RESULT F_API FMOD_ChannelGroup_GetPaused        (FMOD_CHANNELGROUP *channelgroup, FMOD_BOOL *paused);
  2209. FMOD_RESULT F_API FMOD_ChannelGroup_SetMute          (FMOD_CHANNELGROUP *channelgroup, FMOD_BOOL mute);
  2210. FMOD_RESULT F_API FMOD_ChannelGroup_GetMute          (FMOD_CHANNELGROUP *channelgroup, FMOD_BOOL *mute);
  2211.  
  2212. /*
  2213.      Channelgroup override values.  (recursively overwrites whatever settings the channels had)
  2214. */
  2215.  
  2216. FMOD_RESULT F_API FMOD_ChannelGroup_Stop             (FMOD_CHANNELGROUP *channelgroup);
  2217. FMOD_RESULT F_API FMOD_ChannelGroup_OverrideVolume   (FMOD_CHANNELGROUP *channelgroup, float volume);
  2218. FMOD_RESULT F_API FMOD_ChannelGroup_OverrideFrequency(FMOD_CHANNELGROUP *channelgroup, float frequency);
  2219. FMOD_RESULT F_API FMOD_ChannelGroup_OverridePan      (FMOD_CHANNELGROUP *channelgroup, float pan);
  2220. FMOD_RESULT F_API FMOD_ChannelGroup_OverrideReverbProperties(FMOD_CHANNELGROUP *channelgroup, const FMOD_REVERB_CHANNELPROPERTIES *prop);
  2221. FMOD_RESULT F_API FMOD_ChannelGroup_Override3DAttributes(FMOD_CHANNELGROUP *channelgroup, const FMOD_VECTOR *pos, const FMOD_VECTOR *vel);
  2222. FMOD_RESULT F_API FMOD_ChannelGroup_OverrideSpeakerMix(FMOD_CHANNELGROUP *channelgroup, float frontleft, float frontright, float center, float lfe, float backleft, float backright, float sideleft, float sideright);
  2223.  
  2224. /*
  2225.      Nested channel groups.
  2226. */
  2227.  
  2228. FMOD_RESULT F_API FMOD_ChannelGroup_AddGroup         (FMOD_CHANNELGROUP *channelgroup, FMOD_CHANNELGROUP *group);
  2229. FMOD_RESULT F_API FMOD_ChannelGroup_GetNumGroups     (FMOD_CHANNELGROUP *channelgroup, int *numgroups);
  2230. FMOD_RESULT F_API FMOD_ChannelGroup_GetGroup         (FMOD_CHANNELGROUP *channelgroup, int index, FMOD_CHANNELGROUP **group);
  2231. FMOD_RESULT F_API FMOD_ChannelGroup_GetParentGroup   (FMOD_CHANNELGROUP *channelgroup, FMOD_CHANNELGROUP **group);
  2232.  
  2233. /*
  2234.      DSP functionality only for channel groups playing sounds created with FMOD_SOFTWARE.
  2235. */
  2236.  
  2237. FMOD_RESULT F_API FMOD_ChannelGroup_GetDSPHead       (FMOD_CHANNELGROUP *channelgroup, FMOD_DSP **dsp);
  2238. FMOD_RESULT F_API FMOD_ChannelGroup_AddDSP           (FMOD_CHANNELGROUP *channelgroup, FMOD_DSP *dsp, FMOD_DSPCONNECTION **connection);
  2239.  
  2240. /*
  2241.      Information only functions.
  2242. */
  2243.  
  2244. FMOD_RESULT F_API FMOD_ChannelGroup_GetName          (FMOD_CHANNELGROUP *channelgroup, char *name, int namelen);
  2245. FMOD_RESULT F_API FMOD_ChannelGroup_GetNumChannels   (FMOD_CHANNELGROUP *channelgroup, int *numchannels);
  2246. FMOD_RESULT F_API FMOD_ChannelGroup_GetChannel       (FMOD_CHANNELGROUP *channelgroup, int index, FMOD_CHANNEL **channel);
  2247. FMOD_RESULT F_API FMOD_ChannelGroup_GetSpectrum      (FMOD_CHANNELGROUP *channelgroup, float *spectrumarray, int numvalues, int channeloffset, FMOD_DSP_FFT_WINDOW windowtype);
  2248. FMOD_RESULT F_API FMOD_ChannelGroup_GetWaveData      (FMOD_CHANNELGROUP *channelgroup, float *wavearray, int numvalues, int channeloffset);
  2249.  
  2250. /*
  2251.      Userdata set/get.
  2252. */
  2253.  
  2254. FMOD_RESULT F_API FMOD_ChannelGroup_SetUserData      (FMOD_CHANNELGROUP *channelgroup, void *userdata);
  2255. FMOD_RESULT F_API FMOD_ChannelGroup_GetUserData      (FMOD_CHANNELGROUP *channelgroup, void **userdata);
  2256.  
  2257. FMOD_RESULT F_API FMOD_ChannelGroup_GetMemoryInfo    (FMOD_CHANNELGROUP *channelgroup, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details);
  2258.  
  2259. /*
  2260.     'SoundGroup' API
  2261. */
  2262.  
  2263. FMOD_RESULT F_API FMOD_SoundGroup_Release            (FMOD_SOUNDGROUP *soundgroup);
  2264. FMOD_RESULT F_API FMOD_SoundGroup_GetSystemObject    (FMOD_SOUNDGROUP *soundgroup, FMOD_SYSTEM **system);
  2265.  
  2266. /*
  2267.      SoundGroup control functions.
  2268. */
  2269.  
  2270. FMOD_RESULT F_API FMOD_SoundGroup_SetMaxAudible      (FMOD_SOUNDGROUP *soundgroup, int maxaudible);
  2271. FMOD_RESULT F_API FMOD_SoundGroup_GetMaxAudible      (FMOD_SOUNDGROUP *soundgroup, int *maxaudible);
  2272. FMOD_RESULT F_API FMOD_SoundGroup_SetMaxAudibleBehavior(FMOD_SOUNDGROUP *soundgroup, FMOD_SOUNDGROUP_BEHAVIOR behavior);
  2273. FMOD_RESULT F_API FMOD_SoundGroup_GetMaxAudibleBehavior(FMOD_SOUNDGROUP *soundgroup, FMOD_SOUNDGROUP_BEHAVIOR *behavior);
  2274. FMOD_RESULT F_API FMOD_SoundGroup_SetMuteFadeSpeed   (FMOD_SOUNDGROUP *soundgroup, float speed);
  2275. FMOD_RESULT F_API FMOD_SoundGroup_GetMuteFadeSpeed   (FMOD_SOUNDGROUP *soundgroup, float *speed);
  2276. FMOD_RESULT F_API FMOD_SoundGroup_SetVolume          (FMOD_SOUNDGROUP *soundgroup, float volume);
  2277. FMOD_RESULT F_API FMOD_SoundGroup_GetVolume          (FMOD_SOUNDGROUP *soundgroup, float *volume);
  2278. FMOD_RESULT F_API FMOD_SoundGroup_Stop               (FMOD_SOUNDGROUP *soundgroup);
  2279.  
  2280. /*
  2281.      Information only functions.
  2282. */
  2283.  
  2284. FMOD_RESULT F_API FMOD_SoundGroup_GetName            (FMOD_SOUNDGROUP *soundgroup, char *name, int namelen);
  2285. FMOD_RESULT F_API FMOD_SoundGroup_GetNumSounds       (FMOD_SOUNDGROUP *soundgroup, int *numsounds);
  2286. FMOD_RESULT F_API FMOD_SoundGroup_GetSound           (FMOD_SOUNDGROUP *soundgroup, int index, FMOD_SOUND **sound);
  2287. FMOD_RESULT F_API FMOD_SoundGroup_GetNumPlaying      (FMOD_SOUNDGROUP *soundgroup, int *numplaying);
  2288.  
  2289. /*
  2290.      Userdata set/get.
  2291. */
  2292.  
  2293. FMOD_RESULT F_API FMOD_SoundGroup_SetUserData        (FMOD_SOUNDGROUP *soundgroup, void *userdata);
  2294. FMOD_RESULT F_API FMOD_SoundGroup_GetUserData        (FMOD_SOUNDGROUP *soundgroup, void **userdata);
  2295.  
  2296. FMOD_RESULT F_API FMOD_SoundGroup_GetMemoryInfo      (FMOD_SOUNDGROUP *soundgroup, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details);
  2297.  
  2298. /*
  2299.     'DSP' API
  2300. */
  2301.  
  2302. FMOD_RESULT F_API FMOD_DSP_Release                   (FMOD_DSP *dsp);
  2303. FMOD_RESULT F_API FMOD_DSP_GetSystemObject           (FMOD_DSP *dsp, FMOD_SYSTEM **system);
  2304.  
  2305. /*
  2306.      Connection / disconnection / input and output enumeration.
  2307. */
  2308.  
  2309. FMOD_RESULT F_API FMOD_DSP_AddInput                  (FMOD_DSP *dsp, FMOD_DSP *target, FMOD_DSPCONNECTION **connection);
  2310. FMOD_RESULT F_API FMOD_DSP_DisconnectFrom            (FMOD_DSP *dsp, FMOD_DSP *target);
  2311. FMOD_RESULT F_API FMOD_DSP_DisconnectAll             (FMOD_DSP *dsp, FMOD_BOOL inputs, FMOD_BOOL outputs);
  2312. FMOD_RESULT F_API FMOD_DSP_Remove                    (FMOD_DSP *dsp);
  2313. FMOD_RESULT F_API FMOD_DSP_GetNumInputs              (FMOD_DSP *dsp, int *numinputs);
  2314. FMOD_RESULT F_API FMOD_DSP_GetNumOutputs             (FMOD_DSP *dsp, int *numoutputs);
  2315. FMOD_RESULT F_API FMOD_DSP_GetInput                  (FMOD_DSP *dsp, int index, FMOD_DSP **input, FMOD_DSPCONNECTION **inputconnection);
  2316. FMOD_RESULT F_API FMOD_DSP_GetOutput                 (FMOD_DSP *dsp, int index, FMOD_DSP **output, FMOD_DSPCONNECTION **outputconnection);
  2317.  
  2318. /*
  2319.      DSP unit control.
  2320. */
  2321.  
  2322. FMOD_RESULT F_API FMOD_DSP_SetActive                 (FMOD_DSP *dsp, FMOD_BOOL active);
  2323. FMOD_RESULT F_API FMOD_DSP_GetActive                 (FMOD_DSP *dsp, FMOD_BOOL *active);
  2324. FMOD_RESULT F_API FMOD_DSP_SetBypass                 (FMOD_DSP *dsp, FMOD_BOOL bypass);
  2325. FMOD_RESULT F_API FMOD_DSP_GetBypass                 (FMOD_DSP *dsp, FMOD_BOOL *bypass);
  2326. FMOD_RESULT F_API FMOD_DSP_SetSpeakerActive          (FMOD_DSP *dsp, FMOD_SPEAKER speaker, FMOD_BOOL active);
  2327. FMOD_RESULT F_API FMOD_DSP_GetSpeakerActive          (FMOD_DSP *dsp, FMOD_SPEAKER speaker, FMOD_BOOL *active);
  2328. FMOD_RESULT F_API FMOD_DSP_Reset                     (FMOD_DSP *dsp);
  2329.  
  2330. /*
  2331.      DSP parameter control.
  2332. */
  2333.  
  2334. FMOD_RESULT F_API FMOD_DSP_SetParameter              (FMOD_DSP *dsp, int index, float value);
  2335. FMOD_RESULT F_API FMOD_DSP_GetParameter              (FMOD_DSP *dsp, int index, float *value, char *valuestr, int valuestrlen);
  2336. FMOD_RESULT F_API FMOD_DSP_GetNumParameters          (FMOD_DSP *dsp, int *numparams);
  2337. FMOD_RESULT F_API FMOD_DSP_GetParameterInfo          (FMOD_DSP *dsp, int index, char *name, char *label, char *description, int descriptionlen, float *min, float *max);
  2338. FMOD_RESULT F_API FMOD_DSP_ShowConfigDialog          (FMOD_DSP *dsp, void *hwnd, FMOD_BOOL show);
  2339.  
  2340. /*
  2341.      DSP attributes.        
  2342. */
  2343.  
  2344. FMOD_RESULT F_API FMOD_DSP_GetInfo                   (FMOD_DSP *dsp, char *name, unsigned int *version, int *channels, int *configwidth, int *configheight);
  2345. FMOD_RESULT F_API FMOD_DSP_GetType                   (FMOD_DSP *dsp, FMOD_DSP_TYPE *type);
  2346. FMOD_RESULT F_API FMOD_DSP_SetDefaults               (FMOD_DSP *dsp, float frequency, float volume, float pan, int priority);
  2347. FMOD_RESULT F_API FMOD_DSP_GetDefaults               (FMOD_DSP *dsp, float *frequency, float *volume, float *pan, int *priority);
  2348.  
  2349. /*
  2350.      Userdata set/get.
  2351. */
  2352.  
  2353. FMOD_RESULT F_API FMOD_DSP_SetUserData               (FMOD_DSP *dsp, void *userdata);
  2354. FMOD_RESULT F_API FMOD_DSP_GetUserData               (FMOD_DSP *dsp, void **userdata);
  2355.  
  2356. FMOD_RESULT F_API FMOD_DSP_GetMemoryInfo             (FMOD_DSP *dsp, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details);
  2357.  
  2358. /*
  2359.     'DSPConnection' API
  2360. */
  2361.  
  2362. FMOD_RESULT F_API FMOD_DSPConnection_GetInput        (FMOD_DSPCONNECTION *dspconnection, FMOD_DSP **input);
  2363. FMOD_RESULT F_API FMOD_DSPConnection_GetOutput       (FMOD_DSPCONNECTION *dspconnection, FMOD_DSP **output);
  2364. FMOD_RESULT F_API FMOD_DSPConnection_SetMix          (FMOD_DSPCONNECTION *dspconnection, float volume);
  2365. FMOD_RESULT F_API FMOD_DSPConnection_GetMix          (FMOD_DSPCONNECTION *dspconnection, float *volume);
  2366. FMOD_RESULT F_API FMOD_DSPConnection_SetLevels       (FMOD_DSPCONNECTION *dspconnection, FMOD_SPEAKER speaker, float *levels, int numlevels);
  2367. FMOD_RESULT F_API FMOD_DSPConnection_GetLevels       (FMOD_DSPCONNECTION *dspconnection, FMOD_SPEAKER speaker, float *levels, int numlevels);
  2368.  
  2369. /*
  2370.      Userdata set/get.
  2371. */
  2372.  
  2373. FMOD_RESULT F_API FMOD_DSPConnection_SetUserData     (FMOD_DSPCONNECTION *dspconnection, void *userdata);
  2374. FMOD_RESULT F_API FMOD_DSPConnection_GetUserData     (FMOD_DSPCONNECTION *dspconnection, void **userdata);
  2375.  
  2376. FMOD_RESULT F_API FMOD_DSPConnection_GetMemoryInfo   (FMOD_DSPCONNECTION *dspconnection, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details);
  2377.  
  2378. /*
  2379.     'Geometry' API
  2380. */
  2381.  
  2382. FMOD_RESULT F_API FMOD_Geometry_Release              (FMOD_GEOMETRY *geometry);
  2383.  
  2384. /*
  2385.      Polygon manipulation.
  2386. */
  2387.  
  2388. FMOD_RESULT F_API FMOD_Geometry_AddPolygon           (FMOD_GEOMETRY *geometry, float directocclusion, float reverbocclusion, FMOD_BOOL doublesided, int numvertices, const FMOD_VECTOR *vertices, int *polygonindex);
  2389. FMOD_RESULT F_API FMOD_Geometry_GetNumPolygons       (FMOD_GEOMETRY *geometry, int *numpolygons);
  2390. FMOD_RESULT F_API FMOD_Geometry_GetMaxPolygons       (FMOD_GEOMETRY *geometry, int *maxpolygons, int *maxvertices);
  2391. FMOD_RESULT F_API FMOD_Geometry_GetPolygonNumVertices(FMOD_GEOMETRY *geometry, int index, int *numvertices);
  2392. FMOD_RESULT F_API FMOD_Geometry_SetPolygonVertex     (FMOD_GEOMETRY *geometry, int index, int vertexindex, const FMOD_VECTOR *vertex);
  2393. FMOD_RESULT F_API FMOD_Geometry_GetPolygonVertex     (FMOD_GEOMETRY *geometry, int index, int vertexindex, FMOD_VECTOR *vertex);
  2394. FMOD_RESULT F_API FMOD_Geometry_SetPolygonAttributes (FMOD_GEOMETRY *geometry, int index, float directocclusion, float reverbocclusion, FMOD_BOOL doublesided);
  2395. FMOD_RESULT F_API FMOD_Geometry_GetPolygonAttributes (FMOD_GEOMETRY *geometry, int index, float *directocclusion, float *reverbocclusion, FMOD_BOOL *doublesided);
  2396.  
  2397. /*
  2398.      Object manipulation.
  2399. */
  2400.  
  2401. FMOD_RESULT F_API FMOD_Geometry_SetActive            (FMOD_GEOMETRY *geometry, FMOD_BOOL active);
  2402. FMOD_RESULT F_API FMOD_Geometry_GetActive            (FMOD_GEOMETRY *geometry, FMOD_BOOL *active);
  2403. FMOD_RESULT F_API FMOD_Geometry_SetRotation          (FMOD_GEOMETRY *geometry, const FMOD_VECTOR *forward, const FMOD_VECTOR *up);
  2404. FMOD_RESULT F_API FMOD_Geometry_GetRotation          (FMOD_GEOMETRY *geometry, FMOD_VECTOR *forward, FMOD_VECTOR *up);
  2405. FMOD_RESULT F_API FMOD_Geometry_SetPosition          (FMOD_GEOMETRY *geometry, const FMOD_VECTOR *position);
  2406. FMOD_RESULT F_API FMOD_Geometry_GetPosition          (FMOD_GEOMETRY *geometry, FMOD_VECTOR *position);
  2407. FMOD_RESULT F_API FMOD_Geometry_SetScale             (FMOD_GEOMETRY *geometry, const FMOD_VECTOR *scale);
  2408. FMOD_RESULT F_API FMOD_Geometry_GetScale             (FMOD_GEOMETRY *geometry, FMOD_VECTOR *scale);
  2409. FMOD_RESULT F_API FMOD_Geometry_Save                 (FMOD_GEOMETRY *geometry, void *data, int *datasize);
  2410.  
  2411. /*
  2412.      Userdata set/get.
  2413. */
  2414.  
  2415. FMOD_RESULT F_API FMOD_Geometry_SetUserData          (FMOD_GEOMETRY *geometry, void *userdata);
  2416. FMOD_RESULT F_API FMOD_Geometry_GetUserData          (FMOD_GEOMETRY *geometry, void **userdata);
  2417.  
  2418. FMOD_RESULT F_API FMOD_Geometry_GetMemoryInfo        (FMOD_GEOMETRY *geometry, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details);
  2419.  
  2420. /*
  2421.     'Reverb' API
  2422. */
  2423.  
  2424. FMOD_RESULT F_API FMOD_Reverb_Release                (FMOD_REVERB *reverb);
  2425.  
  2426. /*
  2427.      Reverb manipulation.
  2428. */
  2429.  
  2430. FMOD_RESULT F_API FMOD_Reverb_Set3DAttributes        (FMOD_REVERB *reverb, const FMOD_VECTOR *position, float mindistance, float maxdistance);
  2431. FMOD_RESULT F_API FMOD_Reverb_Get3DAttributes        (FMOD_REVERB *reverb, FMOD_VECTOR *position, float *mindistance, float *maxdistance);
  2432. FMOD_RESULT F_API FMOD_Reverb_SetProperties          (FMOD_REVERB *reverb, const FMOD_REVERB_PROPERTIES *properties);
  2433. FMOD_RESULT F_API FMOD_Reverb_GetProperties          (FMOD_REVERB *reverb, FMOD_REVERB_PROPERTIES *properties);
  2434. FMOD_RESULT F_API FMOD_Reverb_SetActive              (FMOD_REVERB *reverb, FMOD_BOOL active);
  2435. FMOD_RESULT F_API FMOD_Reverb_GetActive              (FMOD_REVERB *reverb, FMOD_BOOL *active);
  2436.  
  2437. /*
  2438.      Userdata set/get.
  2439. */
  2440.  
  2441. FMOD_RESULT F_API FMOD_Reverb_SetUserData            (FMOD_REVERB *reverb, void *userdata);
  2442. FMOD_RESULT F_API FMOD_Reverb_GetUserData            (FMOD_REVERB *reverb, void **userdata);
  2443.  
  2444. FMOD_RESULT F_API FMOD_Reverb_GetMemoryInfo          (FMOD_REVERB *reverb, unsigned int memorybits, unsigned int event_memorybits, unsigned int *memoryused, FMOD_MEMORY_USAGE_DETAILS *memoryused_details);
  2445.  
  2446. #ifdef __cplusplus
  2447. }
  2448. #endif
  2449.  
  2450. #endif
Add Comment
Please, Sign In to add comment