diff options
author | Camil Staps | 2015-08-24 09:09:16 +0200 |
---|---|---|
committer | Camil Staps | 2015-08-24 09:09:16 +0200 |
commit | 0f996ff6adbd001c15c335a2b7c7c3fb019e7af2 (patch) | |
tree | a243f9cc8ef6c9605b3ef3ba4ba8d1fd1b18460d | |
parent | Fixing winPlaySound (diff) |
Fixing some more pointers
-rw-r--r-- | pictCCall_12.icl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pictCCall_12.icl b/pictCCall_12.icl index dceb7bb..7ca03e9 100644 --- a/pictCCall_12.icl +++ b/pictCCall_12.icl @@ -97,7 +97,7 @@ winGetStringWidth _ _ _ _ _ = code
{
.inline WinGetStringWidth
- ccall WinGetStringWidth "SSIIIII-II"
+ ccall WinGetStringWidth "SSIIIpI-II"
.end
}
@@ -106,7 +106,7 @@ winGetCharWidth _ _ _ _ _ = code
{
.inline WinGetCharWidth
- ccall WinGetCharWidth "ISIIIII-II"
+ ccall WinGetCharWidth "ISIIIpI-II"
.end
}
@@ -124,7 +124,7 @@ winGetFontInfo _ _ _ _ = code
{
.inline WinGetFontInfo
- ccall WinGetFontInfo "SIIIII-IIIII"
+ ccall WinGetFontInfo "SIIIpI-IIIII"
.end
}
@@ -650,7 +650,7 @@ winGetPenPos _ = code
{
.inline WinGetPenPos
- ccall WinGetPenPos "pI-IIII"
+ ccall WinGetPenPos "pI-IIpI"
.end
}
|