home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BUG 4
/
BUGCD1997_05.BIN
/
aplic
/
clip4win
/
clip4win.exe
/
C4W30E.HUF
/
INCLUDE
/
PAINT.CH
< prev
next >
Wrap
Text File
|
1993-10-08
|
832b
|
32 lines
////////////////////////////
//
// Clip-4-Win PAINTSTRUCT definitions
//
// Copyright (C) 1993 Skelton Software, Kendal Cottage, Hillam, Leeds, UK.
// All Rights Reserved.
//
////////////////////////////
#ifndef C4W_PS_CH
#define C4W_PS_CH
// Array elements of aPaint[], which is used with BeginPaint() etc.
//
// (these correspond to the members of the Windows PAINTSTRUCT structure)
#define PS_hdc 1 // hDC for output
#define PS_fErase 2 // .t. if background needs to be redrawn
#define PS_rcLeft 3 // \
#define PS_rcTop 4 // \___ x1,y1 and x2,y2 of rectangle to redraw
#define PS_rcRight 5 // /
#define PS_rcBottom 6 // /
#define PS_fRestore 7 // reserved
#define PS_fIncUpdate 8 // reserved
#define PS_rgbReserved 9 // reserved
#define PS_LENGTH 9 // length of array
#endif // C4W_PS_CH