diff options
Diffstat (limited to 'core/fxcrt/fx_stream.cpp')
-rw-r--r-- | core/fxcrt/fx_stream.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/fxcrt/fx_stream.cpp b/core/fxcrt/fx_stream.cpp index 337cbb325c..4d61b0a6ec 100644 --- a/core/fxcrt/fx_stream.cpp +++ b/core/fxcrt/fx_stream.cpp @@ -15,6 +15,16 @@ #include "core/fxcrt/fx_safe_types.h" #include "third_party/base/ptr_util.h" +#if _FX_PLATFORM_ == _FX_PLATFORM_WINDOWS_ +#include <direct.h> + +struct CFindFileDataA { + HANDLE m_Handle; + bool m_bEnd; + WIN32_FIND_DATAA m_FindData; +}; +#endif // _FX_PLATFORM_ == _FX_PLATFORM_WINDOWS_ + namespace { class CFX_CRTFileStream final : public IFX_SeekableStream { |