aboutsummaryrefslogtreecommitdiff
path: root/include/cru/base/platform/win/StreamConvert.h
blob: 17552c31fcd08b60590c9bbd6dbf0e1cc9181acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#ifdef CRU_PLATFORM_WINDOWS

#include "../../io/Stream.h"

#include <objidlbase.h>

namespace cru::platform::win {
CRU_BASE_API IStream* ConvertStreamToComStream(io::Stream* stream);
}

#endif