2025-04-27 07:49:33 -04:00

68 lines
870 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1990-1999 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 -by- DC
[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_