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

#ifndef _WIN32
#error "This file can only be included on Windows."
#endif

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

#include <objidlbase.h>

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