#pragma once // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. #if defined(__cplusplus) extern "C" { #endif // typedefs typedef BOOL (WINAPI *PFN_INITIATESYSTEMSHUTDOWNEXW)( __in_opt LPWSTR lpMachineName, __in_opt LPWSTR lpMessage, __in DWORD dwTimeout, __in BOOL bForceAppsClosed, __in BOOL bRebootAfterShutdown, __in DWORD dwReason ); // variable declarations extern PFN_INITIATESYSTEMSHUTDOWNEXW vpfnInitiateSystemShutdownExW; // function declarations void PlatformInitialize(); #if defined(__cplusplus) } #endif