mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
12 lines
393 B
C#
12 lines
393 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Dalamud.Bootstrap.OS.Windows.Raw
|
|
{
|
|
internal static unsafe class Shell32
|
|
{
|
|
private const string Name = "shell32";
|
|
|
|
[DllImport(Name, CallingConvention = CallingConvention.Winapi, SetLastError = true, ExactSpelling = true)]
|
|
public static extern char** CommandLineToArgvW(void* lpCmdLine, out int pNumArgs);
|
|
}
|
|
}
|