Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个用常规 C++ 编写的库,它期望std::istream&它会读取并阻塞。它在 WinRT 下编译得很好。
std::istream&
Stream.NET 中的类非常相似,我认为这将是一件容易的事。使图书馆从其中之一中读取。
Stream
但是,在 WinRT 中只有一个异步流可用。将我的 Stream 对象转换为IInputStream. 但是我如何包装它以便能够将它传递给期望的库std::istream&?
IInputStream
void readFrom(std::istream& input);