mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
10 lines
355 B
C
10 lines
355 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;
|
|
};
|