12345678910111213141516171819202122 |
- /***********************************************************************
- The content of this file includes source code for the sound engine
- portion of the AUDIOKINETIC Wwise Technology and constitutes "Level
- Two Source Code" as defined in the Source Code Addendum attached
- with this file. Any use of the Level Two Source Code shall be
- subject to the terms and conditions outlined in the Source Code
- Addendum and the End User License Agreement for Wwise(R).
- Copyright (c) 2023 Audiokinetic Inc.
- ***********************************************************************/
- #ifndef _AK_MIDI_WWISE_CMDS_H_
- #define _AK_MIDI_WWISE_CMDS_H_
- #define AK_MIDI_WWISE_CMD_PLAY 0
- #define AK_MIDI_WWISE_CMD_STOP 1
- #define AK_MIDI_WWISE_CMD_PAUSE 2
- #define AK_MIDI_WWISE_CMD_RESUME 3
- #define AK_MIDI_WWISE_CMD_SEEK_MS 4
- #define AK_MIDI_WWISE_CMD_SEEK_SAMPLES 5
- #endif
|