diff options
Diffstat (limited to 'rgnCCall_12.icl')
-rw-r--r-- | rgnCCall_12.icl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rgnCCall_12.icl b/rgnCCall_12.icl index 3c18d74..740978b 100644 --- a/rgnCCall_12.icl +++ b/rgnCCall_12.icl @@ -32,7 +32,7 @@ winCreatePolygonRgn _ _ _ _ = code
{
.inline WinCreatePolygonRgn
- ccall WinCreatePolygonRgn "IIII-II"
+ ccall WinCreatePolygonRgn "pIII-pI"
.end
}
@@ -41,7 +41,7 @@ winSetRgnToRect _ _ _ _ _ _ = code
{
.inline WinSetRgnToRect
- ccall WinSetRgnToRect "IIIIII-II"
+ ccall WinSetRgnToRect "IIIIpI-pI"
.end
}
@@ -50,7 +50,7 @@ winCombineRgn _ _ _ _ _ = code
{
.inline WinCombineRgn
- ccall WinCombineRgn "pppIp-pp"
+ ccall WinCombineRgn "pppII-pI"
.end
}
@@ -59,6 +59,6 @@ winGetRgnBox _ _ = code
{
.inline WinGetRgnBox
- ccall WinGetRgnBox "pp-ppppppp"
+ ccall WinGetRgnBox "pI-IIIIIII"
.end
}
|