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.
51 lines
598 B
51 lines
598 B
/*++
|
|
|
|
Copyright (c) 1990-2003 Microsoft Corporation
|
|
|
|
|
|
Module Name:
|
|
|
|
pensetup.h
|
|
|
|
|
|
Abstract:
|
|
|
|
This module contains definitions for pen setup
|
|
|
|
|
|
Author:
|
|
|
|
09-Dec-1993 Thu 19:38:33 created
|
|
|
|
|
|
[Environment:]
|
|
|
|
GDI Device Driver - Plotter.
|
|
|
|
|
|
[Notes:]
|
|
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _PENSETUP_
|
|
#define _PENSETUP_
|
|
|
|
POPTITEM
|
|
SavePenSet(
|
|
PPRINTERINFO pPI,
|
|
POPTITEM pOptItem
|
|
);
|
|
|
|
UINT
|
|
CreatePenSetupOI(
|
|
PPRINTERINFO pPI,
|
|
POPTITEM pOptItem,
|
|
POIDATA pOIData
|
|
);
|
|
|
|
#endif // _PENSETUP_
|