main
h 18 lines 637 Bytes
Raw
1 #pragma once
2 // 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.
3
4
5 const UINT COST_PERFMON_REGISTER = 1000;
6 const UINT COST_PERFMON_UNREGISTER = 1000;
7
8 const UINT COST_SMB_CREATESMB = 10000;
9 const UINT COST_SMB_DROPSMB = 5000;
10 const UINT COST_USER_ADD = 10000;
11 const UINT COST_USER_DELETE = 10000;
12
13 const UINT COST_PERFMONMANIFEST_REGISTER = 1000;
14 const UINT COST_PERFMONMANIFEST_UNREGISTER = 1000;
15
16 const UINT COST_EVENTMANIFEST_REGISTER = 1000;
17 const UINT COST_EVENTMANIFEST_UNREGISTER = 1000;
18