| 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/um/ |
Upload File : |
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation. All Rights Reserved.
//
// File: homepagesetting.idl
//
//----------------------------------------------------------------------------
cpp_quote("//=--------------------------------------------------------------------------=")
cpp_quote("// homepagesetting.h")
cpp_quote("//=--------------------------------------------------------------------------=")
cpp_quote("// (C) Copyright Microsoft Corporation. All Rights Reserved.")
cpp_quote("//")
cpp_quote("// THIS CODE AND INFORMATION IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF")
cpp_quote("// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO")
cpp_quote("// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A")
cpp_quote("// PARTICULAR PURPOSE.")
cpp_quote("//=--------------------------------------------------------------------------=")
cpp_quote("")
cpp_quote("#include <winapifamily.h>")
#pragma region Desktop Family
cpp_quote("#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)")
import "objidl.idl";
import "oleidl.idl";
[
object,
uuid(FDFC244F-18FA-4FF2-B08E-1D618F3FFBE4),
pointer_default(unique),
local,
]
interface IHomePageSetting : IUnknown
{
HRESULT SetHomePage(
[in] HWND hwnd,
[in] LPCWSTR homePageUri,
[in] LPCWSTR brandingMessage);
HRESULT IsHomePage(
[in] LPCWSTR uri,
[out] BOOL *isDefault);
HRESULT SetHomePageToBrowserDefault();
}
[
uuid(D9903292-C3C3-4D0D-8A09-05DD419D5B6F),
]
library IEHomePageSettingObjects
{
[uuid(374CEDE0-873A-4C4F-BC86-BCC8CF5116A3)] coclass HomePageSetting {interface IHomePageSetting;}
}
cpp_quote("#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */")
#pragma endregion