-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconint.h
More file actions
45 lines (30 loc) · 973 Bytes
/
Copy pathconint.h
File metadata and controls
45 lines (30 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT license.
Module Name:
conint.h
Abstract:
This module defines an abstraction for calling certain OS support
functionality that we can't make completely public due to obligations
we have with our partner teams about disclosure of their API surface.
Author:
miniksa 17-Apr-2019
Revision History:
--*/
#pragma once
namespace Microsoft::Console::Internal
{
namespace ProcessPolicy
{
[[nodiscard]]
HRESULT CheckAppModelPolicy(const HANDLE hToken,
bool& fIsWrongWayBlocked) noexcept;
[[nodiscard]]
HRESULT CheckIntegrityLevelPolicy(const HANDLE hOtherToken,
bool& fIsWrongWayBlocked) noexcept;
}
namespace EdpPolicy
{
void AuditClipboard(const std::wstring_view destinationName) noexcept;
}
}