| 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
//
// Description: Enterprise Data Protection Win32 APIs
//
//------------------------------------------------------------------------
#ifdef _MSC_VER
#pragma once
#endif
#ifndef _EDPWIN32_H_
#define _EDPWIN32_H_
#ifndef NT_INCLUDED
#include <winnt.h>
#endif /* NT_INCLUDED */
#pragma region Desktop Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_PC_APP)
#if NTDDI_VERSION >= NTDDI_WIN10_TH2
STDAPI ProtectFileToEnterpriseIdentity(
_In_ PCWSTR fileOrFolderPath,
_In_ PCWSTR identity
);
#endif
#if NTDDI_VERSION >= NTDDI_WIN10_RS2
typedef struct
{
bool audit;
}FILE_UNPROTECT_OPTIONS;
STDAPI UnprotectFile(
_In_ PCWSTR fileOrFolderPath,
_In_opt_ const FILE_UNPROTECT_OPTIONS* options
);
#endif
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_PC_APP) */
#pragma endregion
#endif // _EDPWIN32_H_