diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-06-14 00:50:34 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-06-14 00:50:34 +0100 |
commit | 37e364b2c6cc7487a1c888d256a73e5337bb7189 (patch) | |
tree | eaf6e857382eef16c2dd940eb4125536fbe068bd /src/T2DLL/T2SoundPlayer.cpp | |
download | t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.tar.gz t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.zip |
initial commit
Diffstat (limited to 'src/T2DLL/T2SoundPlayer.cpp')
-rw-r--r-- | src/T2DLL/T2SoundPlayer.cpp | 76 |
1 files changed, 76 insertions, 0 deletions
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() { +} |