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

Interop.GetSystemDirectoryW.cs « Kernel32 « Windows « Interop « src « Common « libraries « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97d100e3b41152ad366826f89c0abb2f87a1a39c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Runtime.InteropServices;

internal static partial class Interop
{
    internal static partial class Kernel32
    {
        [LibraryImport(Libraries.Kernel32, SetLastError = true, StringMarshalling = StringMarshalling.Utf16)]
        internal static partial uint GetSystemDirectoryW(ref char lpBuffer, uint uSize);
    }
}