| 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 : |
/********************************************************************************
* *
* oobenotification.h - API Set Contract for api-ms-win-oobe-notification-l1 *
* *
* Copyright (c) Microsoft Corporation. All rights reserved. *
* *
********************************************************************************/
//
// API Set Contract:
//
// api-ms-win-oobe-notification-l1
//
// Abstract:
//
// This header file provides API function signatures for
// information regarding the completion of Windows Welcome
// experience, also known as OOBE.
//
// These signatures are published for external use by
// application developers.
//
// Clients of this functionality should include this header
// and link against the published kernel32.lib.
//
//
#if defined(_MSC_VER)
#if _MSC_VER > 1000
#pragma once
#endif
#endif // defined(_MSC_VER)
#if defined(_CONTRACT_GEN)
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#include <windows.h>
#endif // defined(_CONTRACT_GEN)
#ifdef __cplusplus
extern "C" {
#endif
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
#if (NTDDI_VERSION >= NTDDI_WINBLUE)
typedef
VOID
(CALLBACK *OOBE_COMPLETED_CALLBACK)(
_In_opt_ PVOID CallbackContext
);
_Check_return_
_Success_(return != FALSE)
BOOL
WINAPI
OOBEComplete(
_Out_ PBOOL isOOBEComplete
);
_Check_return_
_Success_(return != FALSE)
BOOL
WINAPI
RegisterWaitUntilOOBECompleted(
_In_ OOBE_COMPLETED_CALLBACK OOBECompletedCallback,
_In_opt_ PVOID CallbackContext,
_Out_ PVOID* WaitHandle
);
_Check_return_
_Success_(return != FALSE)
BOOL
WINAPI
UnregisterWaitUntilOOBECompleted(
_In_ PVOID WaitHandle
);
#endif // (NTDDI_VERSION >= NTDDI_WINBLUE)
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#ifdef __cplusplus
}
#endif