Commit 5d4a7433 authored by Robert Wilhelm's avatar Robert Wilhelm Committed by Alexandre Julliard

msvcrt90: Add stat64i32.

parent d9746e3e
...@@ -189,3 +189,17 @@ int CDECL _fstat64i32(int fd, struct _stat64i32* buf) ...@@ -189,3 +189,17 @@ int CDECL _fstat64i32(int fd, struct _stat64i32* buf)
msvcrt_stat64_to_stat64i32(&buf64, buf); msvcrt_stat64_to_stat64i32(&buf64, buf);
return ret; return ret;
} }
/*********************************************************************
* _stat64i32 (MSVCRT.@)
*/
int CDECL _stat64i32(const char* path, struct _stat64i32 * buf)
{
int ret;
struct _stat64 buf64;
ret = _stat64(path, &buf64);
if (!ret)
msvcrt_stat64_to_stat64i32(&buf64, buf);
return ret;
}
...@@ -912,7 +912,7 @@ ...@@ -912,7 +912,7 @@
@ stub _stat32 @ stub _stat32
@ stub _stat32i64 @ stub _stat32i64
@ cdecl _stat64(str ptr) msvcrt._stat64 @ cdecl _stat64(str ptr) msvcrt._stat64
@ stub _stat64i32 @ cdecl _stat64i32(str ptr)
@ cdecl _statusfp() msvcrt._statusfp @ cdecl _statusfp() msvcrt._statusfp
@ stub _statusfp2 @ stub _statusfp2
@ stub _strcoll_l @ stub _strcoll_l
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment