mirror of https://github.com/tongzx/nt5src
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
61 lines
716 B
/*++
|
|
|
|
Copyright (c) 1990-1998 Microsoft Corporation
|
|
All rights reserved
|
|
|
|
Module Name:
|
|
|
|
pfdlg.h
|
|
|
|
Abstract:
|
|
|
|
Print to file header
|
|
|
|
Author:
|
|
|
|
Steve Kiraly (steveki) 5-May-1998
|
|
|
|
Environment:
|
|
|
|
User Mode -Win32
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef _PFDLG_H_
|
|
#define _PFDLG_H_
|
|
|
|
|
|
BOOL APIENTRY
|
|
PrintToFileDlg(
|
|
HWND hwnd,
|
|
WORD msg,
|
|
WPARAM wparam,
|
|
LPARAM lparam
|
|
);
|
|
|
|
BOOL
|
|
PrintToFileInitDialog(
|
|
HWND hwnd,
|
|
LPWSTR *ppFileName
|
|
);
|
|
|
|
BOOL
|
|
PrintToFileCommandOK(
|
|
HWND hwnd
|
|
);
|
|
|
|
BOOL
|
|
PrintToFileCommandCancel(
|
|
HWND hwnd
|
|
);
|
|
|
|
BOOL
|
|
PrintToFileHelp(
|
|
IN HWND hDlg,
|
|
IN UINT uMsg,
|
|
IN WPARAM wParam,
|
|
IN LPARAM lParam
|
|
);
|
|
|
|
#endif
|