diff options
author | Camil Staps | 2015-08-21 14:20:24 +0200 |
---|---|---|
committer | Camil Staps | 2015-08-21 14:20:24 +0200 |
commit | 1e73aa1a73488cc31982a5cc0fb987ebf3f0bbb9 (patch) | |
tree | 123c8029a2be92e3811a4c225ddfe6dcc4196e95 /clCCall_12.icl | |
parent | To mimic the Windows library, WinGetTime now returns the local time rather th... (diff) |
Fixed making clean strings (winGetCString and winGetCStringAndFree; clean_string struct) on 64-bit machines
Diffstat (limited to 'clCCall_12.icl')
-rw-r--r-- | clCCall_12.icl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clCCall_12.icl b/clCCall_12.icl index 07bc194..0d2c24d 100644 --- a/clCCall_12.icl +++ b/clCCall_12.icl @@ -152,7 +152,7 @@ winReleaseCString _ _ = code
{
.inline WinReleaseCString
- ccall WinReleaseCString "II-I"
+ ccall WinReleaseCString "pI-I"
.end
}
@@ -161,7 +161,7 @@ winGetCStringAndFree _ _ = code
{
.inline WinGetCStringAndFree
- ccall WinGetCStringAndFree "II-SI"
+ ccall WinGetCStringAndFree "pI-SI"
.end
}
@@ -170,7 +170,7 @@ winGetCString _ _ = code
{
.inline WinGetCString
- ccall WinGetCString "II-SI"
+ ccall WinGetCString "pI-SI"
.end
}
|