On 11/01/13 00:40, Andrey Zhezherun wrote:
--- wine-1.7.5.orig/include/msvcrt/io.h 2013-10-25 18:45:30.000000000 +0100 +++ wine-1.7.5/include/msvcrt/io.h 2013-10-30 11:34:59.000000000 +0000 @@ -87,6 +87,7 @@ int __cdecl _access(const char*,int); int __cdecl _chmod(const char*,int); int __cdecl _chsize(int,__msvcrt_ulong); +__int64 __cdecl _chsize_s(int,__int64); int __cdecl _close(int); int __cdecl _commit(int); int __cdecl _creat(const char*,int);
There should be int (or errno_t) instead of __int64.
On 1 November 2013 09:37, Piotr Caban piotr.caban@gmail.com wrote:
On 11/01/13 00:40, Andrey Zhezherun wrote:
+__int64 __cdecl _chsize_s(int,__int64);
There should be int (or errno_t) instead of __int64.
Fixed, revised patch is attached.
Regards, Andrey
On 11/3/13 3:48 PM, Andrey Zhezherun wrote:
On 1 November 2013 09:37, Piotr Caban piotr.caban@gmail.com wrote:
On 11/01/13 00:40, Andrey Zhezherun wrote:
+__int64 __cdecl _chsize_s(int,__int64);
There should be int (or errno_t) instead of __int64.
Fixed, revised patch is attached.
Please send the patches to wine-patches list.
Thanks, Piotr