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

@@ -1,10 +1,11 @@
using System.Runtime.InteropServices;
using System;
using System.Runtime.InteropServices;
namespace AssetStudio
{
public static partial class FontHelper
public static class FontHelper
{
[LibraryImport("gdi32.dll")]
public static partial nint AddFontMemResourceEx(nint pbFont, uint cbFont, nint pdv, ref uint pcFonts);
[DllImport("gdi32.dll")]
public static extern IntPtr AddFontMemResourceEx(IntPtr pbFont, uint cbFont, IntPtr pdv, ref uint pcFonts);
}
}