summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/Interop/Windows/Kernel32/Interop.OutputDebugString.cs
blob: 8da50ff8ab3a13afcd6a472ed7e8c3c59e4b2db0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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 System.Runtime.InteropServices;

internal partial class Interop
{
    internal partial class Kernel32
    {
        [DllImport(Interop.Libraries.Kernel32, CharSet = CharSet.Unicode, EntryPoint = "OutputDebugStringW", ExactSpelling = true)]
        internal static extern void OutputDebugString(string message);
    }
}