11 lines
271 B
C#
11 lines
271 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public static partial class FontHelper
|
|
{
|
|
[LibraryImport("gdi32.dll")]
|
|
public static partial nint AddFontMemResourceEx(nint pbFont, uint cbFont, nint pdv, ref uint pcFonts);
|
|
}
|
|
}
|