diff options
author | crupest <crupest@outlook.com> | 2022-05-10 11:02:56 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-05-10 11:02:56 +0800 |
commit | 58e37eee64b13df9cf24cdfc97906e19b2898869 (patch) | |
tree | 64caca951bb5996637238bc6931dceb548da0213 /src/common/platform/win/Win32FileStreamPrivate.h | |
parent | 8708a3d261c77c1728b770b846d1ecf25d6a8629 (diff) | |
download | cru-58e37eee64b13df9cf24cdfc97906e19b2898869.tar.gz cru-58e37eee64b13df9cf24cdfc97906e19b2898869.tar.bz2 cru-58e37eee64b13df9cf24cdfc97906e19b2898869.zip |
...
Diffstat (limited to 'src/common/platform/win/Win32FileStreamPrivate.h')
-rw-r--r-- | src/common/platform/win/Win32FileStreamPrivate.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/common/platform/win/Win32FileStreamPrivate.h b/src/common/platform/win/Win32FileStreamPrivate.h new file mode 100644 index 00000000..24492f8d --- /dev/null +++ b/src/common/platform/win/Win32FileStreamPrivate.h @@ -0,0 +1,13 @@ +#include "cru/common/platform/win/WinPreConfig.h" + +#include <objidl.h> + +namespace cru::platform::win { + +namespace details { +struct Win32FileStreamPrivate { + IStream* stream_ = nullptr; +}; +} // namespace details + +} // namespace cru::platform::win |