AddFontResourceEx function gdi32
The AddFontResourceEx function adds the font resource from the specified file to the system. Fonts added with the AddFontResourceEx function can be marked as private and not enumerable.
int AddFontResourceExW(
LPCWSTR name,
DWORD fl,
PVOID res
);
Implementation
int AddFontResourceEx(Pointer<Utf16> name, int fl, Pointer res) =>
_AddFontResourceEx(name, fl, res);