1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00

28 lines
612 B
C
Raw Normal View History

/********************************************************
* Enums.h *
* *
* XFX::Audio enumerations definition file *
* Copyright <EFBFBD> XFX Team. All Rights Reserved *
********************************************************/
#ifndef XFX_AUDIO_ENUMS_
#define XFX_AUDIO_ENUMS_
namespace XFX
{
namespace Audio
{
struct AudioStopOptions
{
enum type
{
AsAuthored,
Immediate
};
};
typedef AudioStopOptions::type AudioStopOptions_t; // Controls how Cue objects should stop when Cue::Stop is called.
}
}
#endif //_XFX_AUDIO_ENUMS_