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.

58 lines
906 B

  1. /*++
  2. Copyright (c) 1994-1998, Microsoft Corporation All rights reserved.
  3. Module Name:
  4. util.h
  5. Abstract:
  6. This module contains the header information for the utility routines
  7. for this project.
  8. Revision History:
  9. --*/
  10. #ifndef _UTIL_H
  11. #define _UTIL_H
  12. void
  13. HourGlass(
  14. BOOL fOn);
  15. int
  16. MyMessageBox(
  17. HWND hWnd,
  18. UINT uText,
  19. UINT uCaption,
  20. UINT uType,
  21. ...);
  22. void
  23. TrackInit(
  24. HWND hwndScroll,
  25. int nCurrent,
  26. PARROWVSCROLL pAVS);
  27. int
  28. TrackMessage(
  29. WPARAM wParam,
  30. LPARAM lParam,
  31. PARROWVSCROLL pAVS);
  32. typedef struct HWPAGEINFO {
  33. GUID guidClass; // Setup device class
  34. UINT idsTshoot; // Troubleshooter string
  35. } HWPAGEINFO, *PHWPAGEINFO;
  36. typedef const HWPAGEINFO *PCHWPAGEINFO;
  37. HPROPSHEETPAGE
  38. CreateHardwarePage(PCHWPAGEINFO phpi);
  39. #endif