| 1775 | |
| 1776 | |
| 1777 | int CALLBACK FontEnumProc(ENUMLOGFONTEX *lpelfe, NEWTEXTMETRICEX *lpntme, DWORD FontType, LPARAM lParam) |
| 1778 | { |
| 1779 | *(bool *)lParam = true; // Indicate to the caller that the font exists. |
| 1780 | return 0; // Stop the enumeration after the first, since even one match means the font exists. |
| 1781 | } |
| 1782 | |
| 1783 | |
| 1784 |
nothing calls this directly
no outgoing calls
no test coverage detected