Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Interop.Libraries.cs « Windows « Interop « src « Common « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68a50eadd3d60fe9fb9d52abd10a4c796828a429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

internal static partial class Interop
{
    internal static partial class Libraries
    {
        internal const string ErrorHandling = "api-ms-win-core-errorhandling-l1-1-0.dll";
        internal const string Handle = "api-ms-win-core-handle-l1-1-0.dll";
        internal const string IO = "api-ms-win-core-io-l1-1-0.dll";
        internal const string Memory = "api-ms-win-core-memory-l1-1-0.dll";
        internal const string ProcessEnvironment = "api-ms-win-core-processenvironment-l1-1-0.dll";
        internal const string ProcessThreads = "api-ms-win-core-processthreads-l1-1-0.dll";
        internal const string RealTime = "api-ms-win-core-realtime-l1-1-0.dll";
        internal const string SysInfo = "api-ms-win-core-sysinfo-l1-2-0.dll";
        internal const string ThreadPool = "api-ms-win-core-threadpool-l1-2-0.dll";
        internal const string Localization = "api-ms-win-core-localization-l1-2-1.dll";
    }
}