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.

55 lines
1.5 KiB

  1. /*******************************************************************************
  2. *
  3. * Copyright 1999 American Power Conversion, All Rights Reserved
  4. *
  5. * TITLE: UPSCUSTOM.H
  6. *
  7. * VERSION: 1.0
  8. *
  9. * AUTHOR: SteveT
  10. *
  11. * DATE: 07 June, 1999
  12. *
  13. * DESCRIPTION: This file contains declarations of the functions that support the
  14. * custom UPS Interface Configuration dialog.
  15. ********************************************************************************/
  16. #ifndef _UPS_CUSTOM_H_
  17. #define _UPS_CUSTOM_H_
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. /*
  22. * BOOL CALLBACK UPSCustomDlgProc (HWND hDlg,
  23. * UINT uMsg,
  24. * WPARAM wParam,
  25. * LPARAM lParam);
  26. *
  27. * Description: This is a standard DialogProc associated with the UPS custom dialog
  28. *
  29. * Additional Information: See help on DialogProc
  30. *
  31. * Parameters:
  32. *
  33. * HWND hDlg :- Handle to dialog box
  34. *
  35. * UINT uMsg :- message ID
  36. *
  37. * WPARAM wParam :- Specifies additional message-specific information.
  38. *
  39. * LPARAM lParam :- Specifies additional message-specific information.
  40. *
  41. * Return Value: Except in response to the WM_INITDIALOG message, the dialog
  42. * box procedure should return nonzero if it processes the
  43. * message, and zero if it does not.
  44. */
  45. INT_PTR CALLBACK UPSCustomDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
  46. #ifdef __cplusplus
  47. }
  48. #endif
  49. #endif // _UPSCUSTOM_H_