mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-22 22:45:39 +00:00
- Adds missing includes, removes some unused ones. - Removes unused Windows.h and shellapi.h includes. - Uses / as path separator. This is portable and should still work fine on Windows.
24 lines
503 B
C++
24 lines
503 B
C++
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
struct IFileReader
|
|
{
|
|
public:
|
|
typedef int64_t FilePos_t;
|
|
typedef uint64_t UFilePos_t;
|
|
|
|
virtual size_t Read(void *buffer, size_t sz) = 0;
|
|
virtual size_t FileSize() const = 0;
|
|
virtual bool SeekStart(FilePos_t pos) = 0;
|
|
virtual bool SeekCurrent(FilePos_t pos) = 0;
|
|
virtual bool SeekEnd(FilePos_t pos) = 0;
|
|
virtual FilePos_t GetPosition() const = 0;
|
|
|
|
inline bool ReadExact(void *buffer, size_t sz)
|
|
{
|
|
return this->Read(buffer, sz) == sz;
|
|
}
|
|
};
|