+FSCTL_LOCK_VOLUME define
[reactos.git] / include / win32k / fillshap.h
1 #ifndef __WIN32K_FILLSHAP_H
2 #define __WIN32K_FILLSHAP_H
3
4 BOOL
5 STDCALL
6 W32kChord(HDC  hDC,
7                 int  LeftRect,
8                 int  TopRect,
9                 int  RightRect,
10                 int  BottomRect,
11                 int  XRadial1,
12                 int  YRadial1,
13                 int  XRadial2,
14                 int  YRadial2);
15
16 BOOL
17 STDCALL
18 W32kEllipse(HDC  hDC,
19                   int  LeftRect,
20                   int  TopRect,
21                   int  RightRect,
22                   int  BottomRect);
23
24 BOOL
25 STDCALL
26 W32kPie(HDC  hDC,
27               int  LeftRect,
28               int  TopRect,
29               int  RightRect,
30               int  BottomRect,
31               int  XRadial1,
32               int  YRadial1,
33               int  XRadial2,
34               int  YRadial2);
35
36 BOOL
37 STDCALL
38 W32kPolygon(HDC  hDC,
39                   CONST PPOINT  Points,
40                   int  Count);
41
42 BOOL
43 STDCALL
44 W32kPolyPolygon(HDC  hDC,
45                       CONST LPPOINT  Points,
46                       CONST LPINT  PolyCounts,
47                       int  Count);
48
49 BOOL
50 STDCALL
51 W32kRectangle(HDC  hDC,
52                     int  LeftRect,
53                     int  TopRect,
54                     int  RightRect,
55                     int  BottomRect);
56
57 BOOL
58 STDCALL
59 W32kRoundRect(HDC  hDC,
60                     int  LeftRect,
61                     int  TopRect,  
62                     int  RightRect, 
63                     int  BottomRect,
64                     int  Width,
65                     int  Height);
66
67 #endif
68