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.
|
|
/*++
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_
INT_PTR CALLBACK PrintToFileDlg( HWND hwnd, UINT 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
|