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.

49 lines
716 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 1995 - 1998
  3. All rights reserved.
  4. Module Name:
  5. help.hxx
  6. Abstract:
  7. Print UI help facilities
  8. Author:
  9. Steve Kiraly (SteveKi) 11/19/95
  10. Revision History:
  11. --*/
  12. #ifndef _HELP_HXX
  13. #define _HELP_HXX
  14. BOOL
  15. PrintUIHelp(
  16. IN UINT uMsg,
  17. IN HWND hDlg,
  18. IN WPARAM wParam,
  19. IN LPARAM lParam
  20. );
  21. BOOL
  22. PrintUICloseHelp(
  23. IN UINT uMsg,
  24. IN HWND hDlg,
  25. IN WPARAM wParam,
  26. IN LPARAM lParam
  27. );
  28. HWND
  29. PrintUIHtmlHelp(
  30. IN HWND hwndCaller,
  31. IN LPCTSTR pszFile,
  32. IN UINT uCommand,
  33. IN ULONG_PTR dwData
  34. );
  35. #endif