Commit 25efb008 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcr90: Added _wstat64i32 implementation.

parent 3a25d7d9
...@@ -1396,7 +1396,7 @@ ...@@ -1396,7 +1396,7 @@
@ stub _wstat32 @ stub _wstat32
@ stub _wstat32i64 @ stub _wstat32i64
@ cdecl _wstat64(wstr ptr) msvcrt._wstat64 @ cdecl _wstat64(wstr ptr) msvcrt._wstat64
@ stub _wstat64i32 @ cdecl _wstat64i32(wstr ptr) msvcr90._wstat64i32
@ cdecl _wstrdate(ptr) msvcrt._wstrdate @ cdecl _wstrdate(ptr) msvcrt._wstrdate
@ cdecl _wstrdate_s(ptr long) msvcrt._wstrdate_s @ cdecl _wstrdate_s(ptr long) msvcrt._wstrdate_s
@ cdecl _wstrtime(ptr) msvcrt._wstrtime @ cdecl _wstrtime(ptr) msvcrt._wstrtime
......
...@@ -1252,7 +1252,7 @@ ...@@ -1252,7 +1252,7 @@
@ stub _wstat32 @ stub _wstat32
@ stub _wstat32i64 @ stub _wstat32i64
@ cdecl _wstat64(wstr ptr) msvcrt._wstat64 @ cdecl _wstat64(wstr ptr) msvcrt._wstat64
@ stub _wstat64i32 @ cdecl _wstat64i32(wstr ptr) msvcr90._wstat64i32
@ cdecl _wstrdate(ptr) msvcrt._wstrdate @ cdecl _wstrdate(ptr) msvcrt._wstrdate
@ cdecl _wstrdate_s(ptr long) msvcrt._wstrdate_s @ cdecl _wstrdate_s(ptr long) msvcrt._wstrdate_s
@ cdecl _wstrtime(ptr) msvcrt._wstrtime @ cdecl _wstrtime(ptr) msvcrt._wstrtime
......
...@@ -204,3 +204,17 @@ int CDECL _stat64i32(const char* path, struct _stat64i32 * buf) ...@@ -204,3 +204,17 @@ int CDECL _stat64i32(const char* path, struct _stat64i32 * buf)
msvcrt_stat64_to_stat64i32(&buf64, buf); msvcrt_stat64_to_stat64i32(&buf64, buf);
return ret; return ret;
} }
/*********************************************************************
* _wstat64i32 (MSVCRT.@)
*/
int CDECL _wstat64i32(const wchar_t *path, struct _stat64i32 *buf)
{
int ret;
struct _stat64 buf64;
ret = _wstat64(path, &buf64);
if (!ret)
msvcrt_stat64_to_stat64i32(&buf64, buf);
return ret;
}
...@@ -1236,7 +1236,7 @@ ...@@ -1236,7 +1236,7 @@
@ stub _wstat32 @ stub _wstat32
@ stub _wstat32i64 @ stub _wstat32i64
@ cdecl _wstat64(wstr ptr) msvcrt._wstat64 @ cdecl _wstat64(wstr ptr) msvcrt._wstat64
@ stub _wstat64i32 @ cdecl _wstat64i32(wstr ptr)
@ cdecl _wstrdate(ptr) msvcrt._wstrdate @ cdecl _wstrdate(ptr) msvcrt._wstrdate
@ cdecl _wstrdate_s(ptr long) msvcrt._wstrdate_s @ cdecl _wstrdate_s(ptr long) msvcrt._wstrdate_s
@ cdecl _wstrtime(ptr) msvcrt._wstrtime @ cdecl _wstrtime(ptr) msvcrt._wstrtime
......
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