14 lines
393 B
C++
14 lines
393 B
C++
// OpenFile.cpp
|
|
// Author: Josh Holtrop
|
|
// Date: 12/19/05
|
|
|
|
#include "OpenFile.h"
|
|
|
|
OpenFile::OpenFile() {}
|
|
OpenFile::~OpenFile() {}
|
|
int OpenFile::seek(int pos, int mode) { return -1; }
|
|
int OpenFile::read() { return -1; }
|
|
int OpenFile::read(void *buf, u32_t num) { return -1; }
|
|
int OpenFile::write(int chr) { return -1; }
|
|
int OpenFile::write(void *ptr, u32_t num) { return -1; }
|