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/Mmio.cpp | |
download | t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.tar.gz t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.zip |
initial commit
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/Mmio.cpp | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/src/T2DLL/Mmio.cpp b/src/T2DLL/Mmio.cpp new file mode 100644 index 0000000..5a11e85 --- /dev/null +++ b/src/T2DLL/Mmio.cpp @@ -0,0 +1,97 @@ +#include "MMIO.h" + +CMMChunk::CMMChunk() { +} + +CMMChunk& CMMChunk::operator=(const CMMChunk&) { +} + +CMMIdChunk& CMMIdChunk::operator=(const CMMIdChunk&) { +} + +CMMIdChunk::CMMIdChunk(char, char, char, char) { +} + +CMMIdChunk::CMMIdChunk(const char*, unsigned int) { +} + +CMMTypeChunk& CMMTypeChunk::operator=(const CMMTypeChunk&) { +} + +CMMTypeChunk::CMMTypeChunk(char, char, char, char) { +} + +CMMTypeChunk::CMMTypeChunk(const char*, unsigned int) { +} + +CMMIOInfo& CMMIOInfo::operator=(const CMMIOInfo&) { +} + +CMMIOInfo::CMMIOInfo() { +} + +CMMMemoryIOInfo& CMMMemoryIOInfo::operator=(const CMMMemoryIOInfo&) { +} + +CMMMemoryIOInfo::CMMMemoryIOInfo(long, unsigned long) { +} + +CMMMemoryIOInfo::CMMMemoryIOInfo(char*, long, unsigned long) { +} + +/*virtual*/ CMMIO::~CMMIO() { +} + +CMMIO::CMMIO() { +} + +CMMIO::CMMIO(HMMIO) { +} + +CMMIO::CMMIO(const char*, unsigned long) { +} + +CMMIO::CMMIO(CMMMemoryIOInfo&) { +} + +unsigned int CMMIO::Close(unsigned int) { +} + +long CMMIO::Read(char*, long) { +} + +unsigned int CMMIO::Ascend(CMMChunk&, unsigned int) { +} + +unsigned int CMMIO::Descend(CMMChunk&, unsigned int) { +} + +unsigned int CMMIO::Descend(CMMChunk&, CMMChunk&, unsigned int) { +} + +long CMMIO::Seek(long, int) { +} + +long CMMIO::SendMessageA(unsigned int, long, long) { +} + +unsigned int CMMIO::SetBuffer(char*, long, unsigned int) { +} + +long CMMIO::Write(const char*, long) { +} + +unsigned int CMMIO::GetInfo(CMMIOInfo&, unsigned int) { +} + +unsigned int CMMIO::SetInfo(CMMIOInfo&, unsigned int) { +} + +unsigned int CMMIO::Advance(CMMIOInfo&, unsigned int) { +} + +void CMMIO::Open(const char*, unsigned long) { +} + +void CMMIO::Open(CMMMemoryIOInfo&) { +} |