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.
50 lines
675 B
50 lines
675 B
/*++
|
|
|
|
Copyright (c) 1990-1993 Microsoft Corporation
|
|
|
|
|
|
Module Name:
|
|
|
|
pdevinfo.h
|
|
|
|
|
|
Abstract:
|
|
|
|
This module contains prototype for pdevinfo.c
|
|
|
|
|
|
Author:
|
|
|
|
30-Nov-1993 Tue 20:37:51 created -by- Daniel Chou (danielc)
|
|
|
|
07-Dec-1993 Tue 00:21:25 updated -by- v-jimbr
|
|
change dhsurf to dhpdev in SURFOBJ_GETPDEV
|
|
|
|
[Environment:]
|
|
|
|
GDI Device Driver - Plotter.
|
|
|
|
|
|
[Notes:]
|
|
|
|
|
|
Revision History:
|
|
|
|
Dec 06 1993, v-jimbr Fixed to grab pdev from dhpdev instead of dhsurf
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _PDEVINFO_
|
|
#define _PDEVINFO_
|
|
|
|
|
|
PPDEV
|
|
ValidatePDEVFromSurfObj(
|
|
SURFOBJ *
|
|
);
|
|
|
|
#define SURFOBJ_GETPDEV(pso) ValidatePDEVFromSurfObj(pso)
|
|
|
|
|
|
#endif // _PDEVINFO_
|