============================================================================= IsFontAvailable() Test if a certain font is installed on the system
| 346 | // Test if a certain font is installed on the system |
| 347 | // |
| 348 | int CALLBACK EnumFontsProc ( CONST LOGFONT *plf, CONST TEXTMETRIC *ptm, DWORD FontType, LPARAM lParam ) |
| 349 | { |
| 350 | * ( ( PBOOL ) lParam ) = TRUE; |
| 351 | return ( FALSE ); |
| 352 | } |
| 353 | |
| 354 | BOOL IsFontAvailable ( LPCWSTR lpszFontName ) |
| 355 | { |
nothing calls this directly
no outgoing calls
no test coverage detected