aboutsummaryrefslogtreecommitdiffstats
path: root/alc/voice_change.h
diff options
context:
space:
mode:
Diffstat (limited to 'alc/voice_change.h')
-rw-r--r--alc/voice_change.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/alc/voice_change.h b/alc/voice_change.h
deleted file mode 100644
index ddc6186f..00000000
--- a/alc/voice_change.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef VOICE_CHANGE_H
-#define VOICE_CHANGE_H
-
-#include <atomic>
-
-#include "almalloc.h"
-
-struct Voice;
-
-using uint = unsigned int;
-
-
-enum class VChangeState {
- Reset,
- Stop,
- Play,
- Pause,
- Restart
-};
-struct VoiceChange {
- Voice *mOldVoice{nullptr};
- Voice *mVoice{nullptr};
- uint mSourceID{0};
- VChangeState mState{};
-
- std::atomic<VoiceChange*> mNext{nullptr};
-
- DEF_NEWDEL(VoiceChange)
-};
-
-#endif /* VOICE_CHANGE_H */