12 lines
278 B
C#
12 lines
278 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public static class FontHelper
|
|
{
|
|
[DllImport("gdi32.dll")]
|
|
public static extern IntPtr AddFontMemResourceEx(IntPtr pbFont, uint cbFont, IntPtr pdv, ref uint pcFonts);
|
|
}
|
|
}
|