Skip to content

Commit

Permalink
Web file system implementation + fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
elasota committed Apr 19, 2021
1 parent f15a870 commit 84a4d16
Show file tree
Hide file tree
Showing 30 changed files with 372 additions and 80 deletions.
6 changes: 5 additions & 1 deletion Aerofoil/GpFileStream_Win32.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,13 @@ class GpFileStream_Win32 final : public GpIOStream
bool SeekEnd(GpUFilePos_t loc) override;
GpUFilePos_t Size() const override;
GpUFilePos_t Tell() const override;
void Close() override;
void GP_ASYNCIFY_PARANOID_NAMED(Close)() override;
void Flush() override;

#if GP_ASYNCIFY_PARANOID
void Close();
#endif

private:
HANDLE m_handle;
bool m_readable;
Expand Down
Loading

0 comments on commit 84a4d16

Please sign in to comment.