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.
40 lines
792 B
40 lines
792 B
/*++
|
|
|
|
Copyright (c) 1996 - 1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
pdev.h
|
|
|
|
Abstract:
|
|
|
|
Unidrv PDEV and related infor header file.
|
|
|
|
Environment:
|
|
|
|
Windows NT Unidrv driver
|
|
|
|
Revision History:
|
|
|
|
dd-mm-yy -author-
|
|
description
|
|
|
|
--*/
|
|
|
|
#ifndef _RENDER_H_
|
|
#define _RENDER_H_
|
|
|
|
|
|
#define PALETTE_MAX 256
|
|
|
|
typedef struct _PAL_DATA {
|
|
|
|
INT iPalGdi; // Number of colors in GDI palette
|
|
INT iPalDev; // Number of colors in printer palette
|
|
INT iWhiteIndex; // Index for white entry (background)
|
|
INT iBlackIndex; // Index for black entry (background)
|
|
ULONG ulPalCol[ PALETTE_MAX ]; // Palette enties!
|
|
} PAL_DATA;
|
|
|
|
|
|
#endif // !_RENDER_H
|