| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/cppwinrt/winrt/impl/ |
Upload File : |
// C++/WinRT v2.0.190620.2
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#ifndef WINRT_Windows_Data_Pdf_2_H
#define WINRT_Windows_Data_Pdf_2_H
#include "winrt/impl/Windows.Foundation.1.h"
#include "winrt/impl/Windows.Storage.1.h"
#include "winrt/impl/Windows.Storage.Streams.1.h"
#include "winrt/impl/Windows.Data.Pdf.1.h"
namespace winrt::Windows::Data::Pdf
{
struct __declspec(empty_bases) PdfDocument : Windows::Data::Pdf::IPdfDocument
{
PdfDocument(std::nullptr_t) noexcept {}
PdfDocument(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Data::Pdf::IPdfDocument(ptr, take_ownership_from_abi) {}
static auto LoadFromFileAsync(Windows::Storage::IStorageFile const& file);
static auto LoadFromFileAsync(Windows::Storage::IStorageFile const& file, param::hstring const& password);
static auto LoadFromStreamAsync(Windows::Storage::Streams::IRandomAccessStream const& inputStream);
static auto LoadFromStreamAsync(Windows::Storage::Streams::IRandomAccessStream const& inputStream, param::hstring const& password);
};
struct __declspec(empty_bases) PdfPage : Windows::Data::Pdf::IPdfPage,
impl::require<PdfPage, Windows::Foundation::IClosable>
{
PdfPage(std::nullptr_t) noexcept {}
PdfPage(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Data::Pdf::IPdfPage(ptr, take_ownership_from_abi) {}
};
struct __declspec(empty_bases) PdfPageDimensions : Windows::Data::Pdf::IPdfPageDimensions
{
PdfPageDimensions(std::nullptr_t) noexcept {}
PdfPageDimensions(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Data::Pdf::IPdfPageDimensions(ptr, take_ownership_from_abi) {}
};
struct __declspec(empty_bases) PdfPageRenderOptions : Windows::Data::Pdf::IPdfPageRenderOptions
{
PdfPageRenderOptions(std::nullptr_t) noexcept {}
PdfPageRenderOptions(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Data::Pdf::IPdfPageRenderOptions(ptr, take_ownership_from_abi) {}
PdfPageRenderOptions();
};
}
#endif