summaryrefslogtreecommitdiff
path: root/src/T2DLL/Mmio.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/T2DLL/Mmio.cpp97
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&) {
+}