Core/DataStores: Implemented WDC2

This commit is contained in:
Shauren
2018-03-16 18:44:57 +01:00
parent b994868c6a
commit 1188a48c94
8 changed files with 370 additions and 181 deletions

View File

@@ -45,6 +45,11 @@ std::size_t DB2FileSystemSource::GetPosition() const
return ftell(_file);
}
void DB2FileSystemSource::SetPosition(std::size_t position)
{
fseek(_file, position, SEEK_SET);
}
std::size_t DB2FileSystemSource::GetFileSize() const
{
boost::system::error_code error;