ReactOS
0.4.16-dev-297-gc569aee
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
brush.h
Go to the documentation of this file.
1
typedef
struct
_BRUSHINST
2
{
3
// We need to removed ajC0-3 when color pattern code is complete!!!
4
//
5
BYTE
ajC0
[8];
// Color bits for plane 0
6
BYTE
ajC1
[8];
// Color bits for plane 1
7
BYTE
ajC2
[8];
// Color bits for plane 2
8
BYTE
ajC3
[8];
// Color bits for plane 3
9
10
BYTE
ajPattern
[32];
// Color bits for the mask
11
USHORT
usStyle
;
// Brush style
12
BYTE
fjAccel
;
// Accelerator flags
13
BYTE
jFgColor
;
// Current foreground color
14
BYTE
jBkColor
;
// Current background color
15
BYTE
RealWidth
;
//
16
BYTE
YShiftValue
;
//
17
BYTE
jOldBrushRealized
;
//
18
DWORD
Width
;
// Width of brush
19
DWORD
Height
;
20
BYTE
*
pPattern
;
//Pointer to realized mono pattern
21
}
BRUSHINST
;
22
23
#define BRI_SOLID 0
24
#define BRI_HOLLOW 1
25
#define BRI_HATCHED 2
26
#define BRI_PATTERN 3
27
#define BRI_MONO_PATTERN 4
28
#define BRI_COLOR_PATTERN 5
29
30
// Definitions for the pcol_C3 byte of the physical color
31
//
32
// Some of these definitions have limitations as to when they
33
// are valid. They are as follows:
34
//
35
// C0_BIT color device, phys color, solid brushes if SOLID_COLOR
36
// C1_BIT color device, phys color, solid brushes if SOLID_COLOR
37
// C2_BIT color device, phys color, solid brushes if SOLID_COLOR
38
// C3_BIT color device, phys color, solid brushes if SOLID_COLOR
39
// MONO_BIT mono device, phys color
40
// ONES_OR_ZEROS color device, phys color, solid brushes if SOLID_COLOR
41
// GREY_SCALE color device, dithered solid and hatched brushes
42
// SOLID_BRUSH color device, solid brush qualifier
43
//
44
// There may be brushes where the accelerators could have been set,
45
// but wasn't. That's life.
46
47
#define C0_BIT 0x01
// C0 color
48
#define C1_BIT 0x02
// C1 color
49
#define C2_BIT 0x04
// C2 color
50
#define C3_BIT 0x08
// C3 color
51
#define COLOR_BITS 0x0f
// All the color bits
52
#define MONO_BIT 0x10
// Monochrome bit
53
#define ONES_OR_ZEROS 0x20
// Color is really all 1's or all 0's
54
#define GREY_SCALE 0x40
// Indicates a real grey scale brush
55
#define SOLID_BRUSH 0x80
// Indicates a solid color brush
56
57
#define PTRI_INVERT 0x0001
58
#define PTRI_ANIMATE 0x0002
BRUSHINST
struct _BRUSHINST BRUSHINST
DWORD
unsigned long DWORD
Definition:
ntddk_ex.h:95
USHORT
unsigned short USHORT
Definition:
pedump.c:61
_BRUSHINST
Definition:
brush.h:2
_BRUSHINST::YShiftValue
BYTE YShiftValue
Definition:
brush.h:16
_BRUSHINST::ajC1
BYTE ajC1[8]
Definition:
brush.h:6
_BRUSHINST::ajPattern
BYTE ajPattern[32]
Definition:
brush.h:10
_BRUSHINST::jBkColor
BYTE jBkColor
Definition:
brush.h:14
_BRUSHINST::ajC0
BYTE ajC0[8]
Definition:
brush.h:5
_BRUSHINST::ajC3
BYTE ajC3[8]
Definition:
brush.h:8
_BRUSHINST::jOldBrushRealized
BYTE jOldBrushRealized
Definition:
brush.h:17
_BRUSHINST::fjAccel
BYTE fjAccel
Definition:
brush.h:12
_BRUSHINST::Width
DWORD Width
Definition:
brush.h:18
_BRUSHINST::jFgColor
BYTE jFgColor
Definition:
brush.h:13
_BRUSHINST::ajC2
BYTE ajC2[8]
Definition:
brush.h:7
_BRUSHINST::Height
DWORD Height
Definition:
brush.h:19
_BRUSHINST::pPattern
BYTE * pPattern
Definition:
brush.h:20
_BRUSHINST::usStyle
USHORT usStyle
Definition:
brush.h:11
_BRUSHINST::RealWidth
BYTE RealWidth
Definition:
brush.h:15
BYTE
unsigned char BYTE
Definition:
xxhash.c:193
win32ss
drivers
displays
vga
objects
brush.h
Generated on Tue Nov 26 2024 06:15:05 for ReactOS by
1.9.6