Files
nvidiaProfileInspector/nspector/Native/WINAPI/SafeNativeMethods.cs
Orbmu2k 5cb91fabe8 init
2016-03-26 20:13:14 +01:00

12 lines
326 B
C#

using System.Runtime.InteropServices;
namespace nspector.Native.WINAPI
{
static class SafeNativeMethods
{
[DllImport("kernel32", CharSet = CharSet.Unicode, SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool DeleteFile(string name);
}
}