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

Interop.FileTypes.cs « Kernel32 « Windows « Interop « shared « System.Private.CoreLib « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d52f1f4f42d4c4f49047806bcbe2bf0ece9746c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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 partial class Interop
{
    internal partial class Kernel32
    {
        internal partial class FileTypes
        {
            internal const int FILE_TYPE_UNKNOWN = 0x0000;
            internal const int FILE_TYPE_DISK = 0x0001;
            internal const int FILE_TYPE_CHAR = 0x0002;
            internal const int FILE_TYPE_PIPE = 0x0003;
        }
    }
}