mirror of https://github.com/lianthony/NT4.0
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.
48 lines
586 B
48 lines
586 B
/*++
|
|
|
|
Copyright (c) 1990-1993 Microsoft Corporation
|
|
|
|
|
|
Module Name:
|
|
|
|
plotform.h
|
|
|
|
|
|
Abstract:
|
|
|
|
This module contains prototypes for the plotform.c
|
|
|
|
|
|
Author:
|
|
|
|
30-Nov-1993 Tue 20:32:06 created -by- Daniel Chou (danielc)
|
|
|
|
|
|
[Environment:]
|
|
|
|
GDI Device Driver - Plotter.
|
|
|
|
|
|
[Notes:]
|
|
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
#ifndef _PLOTFORM_
|
|
#define _PLOTFORM_
|
|
|
|
|
|
BOOL
|
|
SetPlotForm(
|
|
PPLOTFORM pPlotForm,
|
|
PPLOTGPC pPlotGPC,
|
|
PPAPERINFO pCurPaper,
|
|
PFORMSIZE pCurForm,
|
|
PPLOTDEVMODE pPlotDM,
|
|
PPPDATA pPPData
|
|
);
|
|
|
|
#endif // _PLOTFORM_
|