mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-19 14:27:45 +01:00
err...
This commit is contained in:
parent
b5f1084f73
commit
9965dc313a
14 changed files with 381 additions and 406 deletions
12
Dalamud.Bootstrap/OS/Windows/Raw/Shell32.cs
Normal file
12
Dalamud.Bootstrap/OS/Windows/Raw/Shell32.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue