Added CMakeLists.txt

This commit is contained in:
Jack Andersen
2015-07-06 17:22:19 -10:00
parent 179013df15
commit dea4eda76d
9 changed files with 296 additions and 1 deletions

View File

@@ -23,6 +23,8 @@ public:
public:
uint64_t read(void* buf, uint64_t length)
{return fread(buf, 1, length, fp);}
uint64_t position() const
{return ftello(fp);}
void seek(int64_t offset, int whence)
{fseeko(fp, offset, whence);}
};