From 37e364b2c6cc7487a1c888d256a73e5337bb7189 Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Wed, 14 Jun 2023 00:50:34 +0100 Subject: initial commit --- src/T2DLL/T2SoundPlayer.cpp | 76 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 src/T2DLL/T2SoundPlayer.cpp (limited to 'src/T2DLL/T2SoundPlayer.cpp') diff --git a/src/T2DLL/T2SoundPlayer.cpp b/src/T2DLL/T2SoundPlayer.cpp new file mode 100644 index 0000000..7abc2a6 --- /dev/null +++ b/src/T2DLL/T2SoundPlayer.cpp @@ -0,0 +1,76 @@ +#include "T2SoundPlayer.h" + +/*static*/ const AFX_MSGMAP* __stdcall T2SoundPlayer::_GetBaseMessageMap() { +} + +/*virtual*/ const AFX_MSGMAP* T2SoundPlayer::GetMessageMap() const { +} + +T2SoundPlayer::T2SoundPlayer(CWnd*, IDirectSound*) { +} + +/*virtual*/ T2SoundPlayer::~T2SoundPlayer() { +} + +void T2SoundPlayer::AddSound(const CString&, SOUNDPRIORITY, const CString&) { +} + +void T2SoundPlayer::AddSound(const CString&, SOUNDPRIORITY, unsigned int, HINSTANCE) { +} + +int T2SoundPlayer::LoadSound(T2SoundObjItem*, const CString&, CWave&, int) { +} + +void T2SoundPlayer::DeleteSound(const CString&) { +} + +void T2SoundPlayer::DeleteSoundAll() { +} + +void T2SoundPlayer::Play(const CString&, unsigned int, unsigned int, POINT*, PLAYMODE, int) { +} + +void T2SoundPlayer::Stop(const CString&) { +} + +void T2SoundPlayer::StopAll() { +} + +void T2SoundPlayer::SetVolume(const CString&, int) { +} + +void T2SoundPlayer::SetSoundOn(int) { +} + +void T2SoundPlayer::FadeOut() { +} + +void T2SoundPlayer::FadeIn() { +} + +void T2SoundPlayer::PlayCDTrack(int, int) { +} + +void T2SoundPlayer::StopCD() { +} + +long T2SoundPlayer::OnMCINotify(unsigned int, long) { +} + +/*static*/ const AFX_MSGMAP T2SoundPlayer::messageMap { +} + +/*static*/ const AFX_MSGMAP_ENTRY* const T2SoundPlayer::_messageEntries { +} + +T2SoundObjItem::T2SoundObjItem() { +} + +T2SoundObjItem::~T2SoundObjItem() { +} + +T2SoundObjItemList::T2SoundObjItemList() { +} + +/*virtual*/ T2SoundObjItemList::~T2SoundObjItemList() { +} -- cgit v1.2.3