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.

21 lines
664 B

  1. /****************************************************************************
  2. *
  3. * Bmp.H
  4. *
  5. * Microsoft Confidential
  6. * Copyright (c) Microsoft Corporation 1992-1993
  7. * All rights reserved
  8. *
  9. * Deals with painting bitmaps on the wizard pages
  10. * FelixA 1994.
  11. ***************************************************************************/
  12. // BMP functions
  13. BOOL FAR PASCAL BMP_RegisterClass(HINSTANCE hInstance);
  14. void FAR PASCAL BMP_DestroyClass(HINSTANCE hInstance);
  15. void FAR PASCAL BMP_Paint(HWND hwnd);
  16. LRESULT CALLBACK BMP_WndProc( HWND hWnd, UINT wMsg, WORD wParam, LONG lParam );
  17. // Class name
  18. #define SU_BMP_CLASS "ms_setup_bmp"