Revert r20367 and r20368 since they crash the GUI in second boot by hitting a assert...
[reactos.git] / reactos / include / win32k / fillshap.h
1 #ifndef __WIN32K_FILLSHAP_H
2 #define __WIN32K_FILLSHAP_H
3
4 BOOL
5 STDCALL
6 NtGdiChord(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 NtGdiEllipse(HDC hDC,
19 int LeftRect,
20 int TopRect,
21 int RightRect,
22 int BottomRect);
23
24 BOOL
25 STDCALL
26 NtGdiPie(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 NtGdiPolygon(HDC hDC,
39 CONST PPOINT Points,
40 int Count);
41
42 BOOL
43 STDCALL
44 NtGdiPolyPolygon(HDC hDC,
45 CONST LPPOINT Points,
46 CONST LPINT PolyCounts,
47 int Count);
48
49 BOOL
50 STDCALL
51 NtGdiRectangle(HDC hDC,
52 int LeftRect,
53 int TopRect,
54 int RightRect,
55 int BottomRect);
56
57 BOOL
58 STDCALL
59 NtGdiRoundRect(HDC hDC,
60 int LeftRect,
61 int TopRect,
62 int RightRect,
63 int BottomRect,
64 int Width,
65 int Height);
66
67 #endif
68