Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
498 B

  1. //Copyright (c) 2001 Microsoft Corporation
  2. #ifndef _FONTS_H_
  3. #define _FONTS_H_
  4. #include "precomp.h"
  5. #include "lrwizapi.h"
  6. VOID
  7. SetControlFont(
  8. IN HFONT hFont,
  9. IN HWND hwnd,
  10. IN INT nId
  11. );
  12. VOID
  13. SetupFonts(
  14. IN HINSTANCE hInstance,
  15. IN HWND hwnd,
  16. IN HFONT *pBigBoldFont,
  17. IN HFONT *pBoldFont
  18. );
  19. VOID
  20. DestroyFonts(
  21. IN HFONT hBigBoldFont,
  22. IN HFONT hBoldFont
  23. );
  24. #endif