Import everything
[cl-w32api.git] / modules / win95.region.lisp
blobeff839ece5882a8337582fbe3112861f7274e35c
2 (defcfunex-exported ("CombineRgn" CombineRgn :convention :stdcall) :int
3 (arg0 :pointer)
4 (arg1 :pointer)
5 (arg2 :pointer)
6 (arg3 :int))
8 (defcfunex-exported ("CreateEllipticRgn" CreateEllipticRgn :convention :stdcall) :pointer
9 (arg0 :int)
10 (arg1 :int)
11 (arg2 :int)
12 (arg3 :int))
14 (defcfunex-exported ("CreateEllipticRgnIndirect" CreateEllipticRgnIndirect :convention :stdcall) :pointer
15 (arg0 :pointer))
17 (defcfunex-exported ("CreatePolygonRgn" CreatePolygonRgn :convention :stdcall) :pointer
18 (arg0 :pointer)
19 (arg1 :int)
20 (arg2 :int))
22 (defcfunex-exported ("CreatePolyPolygonRgn" CreatePolyPolygonRgn :convention :stdcall) :pointer
23 (arg0 :pointer)
24 (arg1 :pointer)
25 (arg2 :int)
26 (arg3 :int))
28 (defcfunex-exported ("CreateRectRgn" CreateRectRgn :convention :stdcall) :pointer
29 (arg0 :int)
30 (arg1 :int)
31 (arg2 :int)
32 (arg3 :int))
34 (defcfunex-exported ("CreateRectRgnIndirect" CreateRectRgnIndirect :convention :stdcall) :pointer
35 (arg0 :pointer))
37 (defcfunex-exported ("CreateRoundRectRgn" CreateRoundRectRgn :convention :stdcall) :pointer
38 (arg0 :int)
39 (arg1 :int)
40 (arg2 :int)
41 (arg3 :int)
42 (arg4 :int)
43 (arg5 :int))
45 (defcfunex-exported ("EqualRgn" EqualRgn :convention :stdcall) :int
46 (arg0 :pointer)
47 (arg1 :pointer))
49 (defcfunex-exported ("ExtCreateRegion" ExtCreateRegion :convention :stdcall) :pointer
50 (arg0 :pointer)
51 (arg1 :unsigned-long)
52 (arg2 :pointer))
54 (defcfunex-exported ("FillRgn" FillRgn :convention :stdcall) :int
55 (arg0 :pointer)
56 (arg1 :pointer)
57 (arg2 :pointer))
59 (defcfunex-exported ("GetPolyFillMode" GetPolyFillMode :convention :stdcall) :int
60 (arg0 :pointer))
62 (defcfunex-exported ("GetRegionData" GetRegionData :convention :stdcall) :unsigned-long
63 (arg0 :pointer)
64 (arg1 :unsigned-long)
65 (arg2 :pointer))
67 (defcfunex-exported ("GetRgnBox" GetRgnBox :convention :stdcall) :int
68 (arg0 :pointer)
69 (arg1 :pointer))
71 (defcfunex-exported ("OffsetRgn" OffsetRgn :convention :stdcall) :int
72 (arg0 :pointer)
73 (arg1 :int)
74 (arg2 :int))
76 (defcfunex-exported ("PaintRgn" PaintRgn :convention :stdcall) :int
77 (arg0 :pointer)
78 (arg1 :pointer))
80 (defcfunex-exported ("PtInRegion" PtInRegion :convention :stdcall) :int
81 (arg0 :pointer)
82 (arg1 :int)
83 (arg2 :int))
85 (defcfunex-exported ("RectInRegion" RectInRegion :convention :stdcall) :int
86 (arg0 :pointer)
87 (arg1 :pointer))
89 (defcfunex-exported ("SetPolyFillMode" SetPolyFillMode :convention :stdcall) :int
90 (arg0 :pointer)
91 (arg1 :int))