mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-24 20:42:46 +01:00
14 lines
378 B
C#
14 lines
378 B
C#
using System.Runtime.InteropServices;
|
|
using System.Runtime.Versioning;
|
|
|
|
namespace DHT.Utils.Logging;
|
|
|
|
[SupportedOSPlatform("windows")]
|
|
public static partial class WindowsConsole {
|
|
[LibraryImport("kernel32.dll", SetLastError = true)]
|
|
public static partial void AllocConsole();
|
|
|
|
[LibraryImport("kernel32.dll", SetLastError = true)]
|
|
public static partial void FreeConsole();
|
|
}
|