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.
59 lines
676 B
59 lines
676 B
/*++
|
|
|
|
Copyright (c) 1990-2003 Microsoft Corporation
|
|
|
|
|
|
Module Name:
|
|
|
|
htbmp1.h
|
|
|
|
|
|
Abstract:
|
|
|
|
This module contains definitions and prototypes for htbmp1.c
|
|
|
|
|
|
Author:
|
|
|
|
21-Dec-1993 Tue 21:33:43 created
|
|
|
|
|
|
[Environment:]
|
|
|
|
GDI Device Driver - Plotter.
|
|
|
|
|
|
[Notes:]
|
|
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _HTBMP1BPP_
|
|
#define _HTBMP1BPP_
|
|
|
|
|
|
BOOL
|
|
FillRect1bppBmp(
|
|
PHTBMPINFO pHTBmpInfo,
|
|
BYTE FillByte,
|
|
BOOL Pad1,
|
|
BOOL Rotate
|
|
);
|
|
|
|
BOOL
|
|
Output1bppHTBmp(
|
|
PHTBMPINFO pHTBmpInfo
|
|
);
|
|
|
|
BOOL
|
|
Output1bppRotateHTBmp(
|
|
PHTBMPINFO pHTBmpInfo
|
|
);
|
|
|
|
|
|
|
|
#endif // _HTBMP1BPP_
|