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.

61 lines
716 B

  1. /*++
  2. Copyright (c) 1990-1998 Microsoft Corporation
  3. All rights reserved
  4. Module Name:
  5. pfdlg.h
  6. Abstract:
  7. Print to file header
  8. Author:
  9. Steve Kiraly (steveki) 5-May-1998
  10. Environment:
  11. User Mode -Win32
  12. Revision History:
  13. --*/
  14. #ifndef _PFDLG_H_
  15. #define _PFDLG_H_
  16. BOOL APIENTRY
  17. PrintToFileDlg(
  18. HWND hwnd,
  19. WORD msg,
  20. WPARAM wparam,
  21. LPARAM lparam
  22. );
  23. BOOL
  24. PrintToFileInitDialog(
  25. HWND hwnd,
  26. LPWSTR *ppFileName
  27. );
  28. BOOL
  29. PrintToFileCommandOK(
  30. HWND hwnd
  31. );
  32. BOOL
  33. PrintToFileCommandCancel(
  34. HWND hwnd
  35. );
  36. BOOL
  37. PrintToFileHelp(
  38. IN HWND hDlg,
  39. IN UINT uMsg,
  40. IN WPARAM wParam,
  41. IN LPARAM lParam
  42. );
  43. #endif