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.
44 lines
594 B
44 lines
594 B
/*++
|
|
|
|
Copyright (C) Microsoft Corporation, 1995 - 1998
|
|
All rights reserved.
|
|
|
|
Module Name:
|
|
|
|
defprn.cxx
|
|
|
|
Abstract:
|
|
|
|
Default printer header.
|
|
|
|
Author:
|
|
|
|
Steve Kiraly (SteveKi) 04-Sept-1998
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _DEFPRN_HXX_
|
|
#define _DEFPRN_HXX_
|
|
|
|
/********************************************************************
|
|
|
|
Default printer functions.
|
|
|
|
********************************************************************/
|
|
|
|
enum DEFAULT_PRINTER
|
|
{
|
|
kDefault,
|
|
kNoDefault,
|
|
kOtherDefault
|
|
};
|
|
|
|
DEFAULT_PRINTER
|
|
CheckDefaultPrinter(
|
|
IN LPCTSTR pszPrinter
|
|
);
|
|
|
|
#endif
|
|
|