mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
9 lines
353 B
C
9 lines
353 B
C
|
|
#pragma once
|
||
|
|
#include "pch.h"
|
||
|
|
|
||
|
|
struct StreamUriResolverFromFile : winrt::implements <StreamUriResolverFromFile, winrt::Windows::Web::IUriToStreamResolver> {
|
||
|
|
WCHAR base_path[MAX_PATH];
|
||
|
|
winrt::Windows::Foundation::IAsyncOperation<winrt::Windows::Storage::Streams::IInputStream> UriToStreamAsync(const winrt::Windows::Foundation::Uri & uri) const;
|
||
|
|
};
|
||
|
|
|