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.
64 lines
853 B
64 lines
853 B
/*++
|
|
|
|
Copyright (c) 1990-2003 Microsoft Corporation
|
|
|
|
|
|
Module Name:
|
|
|
|
path.h
|
|
|
|
|
|
Abstract:
|
|
|
|
This module contains prototype and #defines for path.c
|
|
|
|
|
|
Author:
|
|
|
|
18-Nov-1993 Thu 04:42:22 created
|
|
|
|
|
|
[Environment:]
|
|
|
|
GDI Device Driver - Plotter.
|
|
|
|
|
|
[Notes:]
|
|
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
#ifndef _PLOTPATH_
|
|
#define _PLOTPATH_
|
|
|
|
|
|
typedef struct {
|
|
CLIPLINE clipLine;
|
|
RUN runbuff[50];
|
|
} PLOT_CLIPLINE, *PPLOT_CLIPLINE;
|
|
|
|
|
|
BOOL
|
|
MovePen(
|
|
PPDEV pPDev,
|
|
PPOINTFIX pPtNewPos,
|
|
PPOINTL pPtDevPos
|
|
);
|
|
|
|
|
|
BOOL
|
|
DoStrokePathByEnumingClipLines(
|
|
PPDEV pPDev,
|
|
SURFOBJ *pso,
|
|
CLIPOBJ *pco,
|
|
PATHOBJ *ppo,
|
|
PPOINTL pptlBrushOrg,
|
|
BRUSHOBJ *pbo,
|
|
ROP4 rop4,
|
|
LINEATTRS *plineattrs
|
|
);
|
|
|
|
#endif // _PLOTPATH_
|