Source code of Windows XP (NT5)
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.

67 lines
1007 B

  1. /*++
  2. Copyright (c) 1995-1997 Microsoft Corporation
  3. Module Name:
  4. hwprof.h
  5. Abstract:
  6. Public declarations for the Hardware Profiles dialog.
  7. Author:
  8. Paula Tomlinson (paulat) 8-22-1995
  9. Revision History:
  10. 22-Aug-1995 paulat
  11. Creation and initial implementation.
  12. 17-Oc-1997 scotthal
  13. Split public declarations into their own header file
  14. --*/
  15. #ifndef _SYSDM_HWPROF_H_
  16. #define _SYSDM_HWPROF_H_
  17. //
  18. // Public function prototypes
  19. //
  20. INT_PTR
  21. APIENTRY
  22. HardwareProfilesDlg(
  23. IN HWND hDlg,
  24. IN UINT uMessage,
  25. IN WPARAM wParam,
  26. IN LPARAM lParam
  27. );
  28. INT_PTR
  29. APIENTRY
  30. CopyProfileDlg(
  31. IN HWND hDlg,
  32. IN UINT uMessage,
  33. IN WPARAM wParam,
  34. IN LPARAM lParam
  35. );
  36. INT_PTR
  37. APIENTRY
  38. RenameProfileDlg(
  39. IN HWND hDlg,
  40. IN UINT uMessage,
  41. IN WPARAM wParam,
  42. IN LPARAM lParam
  43. );
  44. INT_PTR
  45. APIENTRY GeneralProfileDlg(
  46. IN HWND hDlg,
  47. IN UINT uMessage,
  48. IN WPARAM wParam,
  49. IN LPARAM lParam
  50. );
  51. #endif // _SYSDM_HWPROF_H_