EnumFontFamiliesEx function gdi32
int
EnumFontFamiliesEx(
- int hdc,
- Pointer<
LOGFONT> lpLogfont, - Pointer<
NativeFunction< lpProc,EnumFontFamExProc> > - int lParam,
- int dwFlags,
The EnumFontFamiliesEx function enumerates all uniquely-named fonts in the system that match the font characteristics specified by the LOGFONT structure. EnumFontFamiliesEx enumerates fonts based on typeface name, character set, or both.
int EnumFontFamiliesExW(
HDC hdc,
LPLOGFONTW lpLogfont,
FONTENUMPROCW lpProc,
LPARAM lParam,
DWORD dwFlags
);
Implementation
int EnumFontFamiliesEx(
int hdc,
Pointer<LOGFONT> lpLogfont,
Pointer<NativeFunction<EnumFontFamExProc>> lpProc,
int lParam,
int dwFlags) =>
_EnumFontFamiliesEx(hdc, lpLogfont, lpProc, lParam, dwFlags);