summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/Interop/Windows/Kernel32/Interop.CreateFile2.cs
blob: 0909d3a6c89a5a38e02d4b87b170faf784e1572c (plain)
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
// 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.

using Microsoft.Win32.SafeHandles;
using System;
using System.Runtime.InteropServices;

internal partial class Interop
{
    internal partial class Kernel32
    {
        [DllImport(Libraries.Kernel32, EntryPoint = "CreateFile2", SetLastError = true, CharSet = CharSet.Unicode, BestFitMapping = false)]
        internal static extern unsafe SafeFileHandle CreateFile2(
            string lpFileName,
            int dwDesiredAccess,
            System.IO.FileShare dwShareMode,
            System.IO.FileMode dwCreationDisposition,
            CREATEFILE2_EXTENDED_PARAMETERS* pCreateExParams);

        internal unsafe struct CREATEFILE2_EXTENDED_PARAMETERS
        {
            internal uint dwSize;
            internal uint dwFileAttributes;
            internal uint dwFileFlags;
            internal uint dwSecurityQosFlags;
            internal SECURITY_ATTRIBUTES* lpSecurityAttributes;
            internal IntPtr hTemplateFile;
        }
    }
}