Added net6 back.

This commit is contained in:
Razmoth
2023-01-07 20:58:12 +04:00
parent 94d73398ca
commit 37f816f800
19 changed files with 219 additions and 225 deletions

View File

@@ -4,7 +4,7 @@ using AssetStudio.PInvoke;
namespace ACLLibs
{
public static partial class ACL
public static class ACL
{
private const string DLL_NAME = "acl";
static ACL()
@@ -27,8 +27,8 @@ namespace ACLLibs
#region importfunctions
[LibraryImport(DLL_NAME)]
private static partial void DecompressAll(IntPtr data, out IntPtr pValues, out int numValues, out IntPtr pTimes, out int numTimes);
[DllImport(DLL_NAME)]
private static extern void DecompressAll(IntPtr data, out IntPtr pValues, out int numValues, out IntPtr pTimes, out int numTimes);
#endregion
}
@@ -56,8 +56,8 @@ namespace ACLLibs
#region importfunctions
[LibraryImport(DLL_NAME)]
private static partial void DecompressAll(IntPtr data, out IntPtr pValues, out int numValues, out IntPtr pTimes, out int numTimes);
[DllImport(DLL_NAME)]
private static extern void DecompressAll(IntPtr data, out IntPtr pValues, out int numValues, out IntPtr pTimes, out int numTimes);
#endregion
}