electron removed

This commit is contained in:
kitbyte
2025-03-21 23:35:16 +02:00
parent 8e33e58939
commit 4049ade4b1
54 changed files with 3635 additions and 828 deletions
+17
View File
@@ -0,0 +1,17 @@
using System.Runtime.InteropServices;
namespace AsarSharp.Utils
{
internal static class NativeMethods
{
[DllImport("kernel32.dll", SetLastError = true)]
public static extern bool CreateSymbolicLink(string lpSymlinkFileName, string lpTargetFileName, SymLinkFlag dwFlags);
public enum SymLinkFlag
{
File = 0,
Directory = 1,
AllowUnprivilegedCreate = 2
}
}
}