mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 06:51:54 +00:00
use doxygen aware "note"
This commit is contained in:
parent
53fd1eeac7
commit
026d74f125
4 changed files with 7 additions and 7 deletions
|
@ -98,7 +98,7 @@ enum fluid_gen_type {
|
|||
* mentioned in the list of generator in the SF2 specifications. It
|
||||
* is used, however, as the destination for the default pitch wheel
|
||||
* modulator. */
|
||||
GEN_PITCH, /**< Pitch (NOTE: Not a real SoundFont generator) */
|
||||
GEN_PITCH, /**< Pitch @note Not a real SoundFont generator */
|
||||
GEN_LAST /**< Value defines the count of generators (#fluid_gen_type) @deprecated As of 1.1.7 this enum value is deprecated and will be removed in a future release, because it prevents adding new enum values without breaking ABI compatibility. */
|
||||
};
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ extern "C" {
|
|||
* Value that indicates success, used by most libfluidsynth functions.
|
||||
* @since 1.1.0
|
||||
*
|
||||
* NOTE: This was not publicly defined prior to libfluidsynth 1.1.0. When
|
||||
* @note This was not publicly defined prior to libfluidsynth 1.1.0. When
|
||||
* writing code which should also be compatible with older versions, something
|
||||
* like the following can be used:
|
||||
*
|
||||
|
@ -55,7 +55,7 @@ extern "C" {
|
|||
* Value that indicates failure, used by most libfluidsynth functions.
|
||||
* @since 1.1.0
|
||||
*
|
||||
* NOTE: See #FLUID_OK for more details.
|
||||
* @note See #FLUID_OK for more details.
|
||||
*/
|
||||
#define FLUID_FAILED (-1)
|
||||
|
||||
|
|
|
@ -2100,7 +2100,7 @@ fluid_synth_sfont_select(fluid_synth_t* synth, int chan, unsigned int sfont_id)
|
|||
* @return #FLUID_OK on success, #FLUID_FAILED otherwise
|
||||
* @since 1.1.1
|
||||
*
|
||||
* Note: Channel retains its SoundFont ID and bank numbers, while the program
|
||||
* @note Channel retains its SoundFont ID and bank numbers, while the program
|
||||
* number is set to an "unset" state. MIDI program changes may re-assign a
|
||||
* preset if one matches.
|
||||
*/
|
||||
|
@ -2426,7 +2426,7 @@ fluid_synth_get_polyphony(fluid_synth_t* synth)
|
|||
* @return Number of currently active voices.
|
||||
* @since 1.1.0
|
||||
*
|
||||
* Note: To generate accurate continuous statistics of the voice count, caller
|
||||
* @note To generate accurate continuous statistics of the voice count, caller
|
||||
* should ensure this function is called synchronously with the audio synthesis
|
||||
* process. This can be done in the new_fluid_audio_driver2() audio callback
|
||||
* function for example.
|
||||
|
|
|
@ -1310,7 +1310,7 @@ fluid_settings_getint_default(fluid_settings_t* settings, const char *name)
|
|||
* @param data any user provided pointer
|
||||
* @param func callback function to be called on each iteration
|
||||
*
|
||||
* NOTE: Starting with FluidSynth 1.1.0 the \a func callback is called for each
|
||||
* @note Starting with FluidSynth 1.1.0 the \a func callback is called for each
|
||||
* option in alphabetical order. Sort order was undefined in previous versions.
|
||||
*/
|
||||
void
|
||||
|
@ -1504,7 +1504,7 @@ fluid_settings_foreach_iter (void* key, void* value, void* data)
|
|||
* @param data any user provided pointer
|
||||
* @param func callback function to be called on each iteration
|
||||
*
|
||||
* NOTE: Starting with FluidSynth 1.1.0 the \a func callback is called for each
|
||||
* @note Starting with FluidSynth 1.1.0 the \a func callback is called for each
|
||||
* setting in alphabetical order. Sort order was undefined in previous versions.
|
||||
*/
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue