Module: wine Branch: master Commit: e0f1bac434b896297277cac34fb53206714c7d58 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e0f1bac434b896297277cac34f...
Author: Daniel Lehman dlehman@esri.com Date: Fri Jan 6 12:24:50 2012 -0800
msvcrt: Add struct and prototypes for existing _findfirst64 and _findnext64.
---
include/msvcrt/io.h | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/include/msvcrt/io.h b/include/msvcrt/io.h index c7ba9ab..ad5c507 100644 --- a/include/msvcrt/io.h +++ b/include/msvcrt/io.h @@ -47,6 +47,16 @@ struct _finddatai64_t __int64 DECLSPEC_ALIGN(8) size; char name[260]; }; + +struct _finddata64_t +{ + unsigned attrib; + __time64_t time_create; + __time64_t time_access; + __time64_t time_write; + __int64 DECLSPEC_ALIGN(8) size; + char name[260]; +}; #endif /* _FINDDATA_T_DEFINED */
#ifndef _WFINDDATA_T_DEFINED @@ -88,8 +98,10 @@ __msvcrt_long __cdecl _filelength(int); int __cdecl _findclose(intptr_t); intptr_t __cdecl _findfirst(const char*,struct _finddata_t*); intptr_t __cdecl _findfirsti64(const char*, struct _finddatai64_t*); +intptr_t __cdecl _findfirst64(const char*, struct _finddata64_t*); int __cdecl _findnext(intptr_t,struct _finddata_t*); int __cdecl _findnexti64(intptr_t, struct _finddatai64_t*); +int __cdecl _findnext64(intptr_t, struct _finddata64_t*); intptr_t __cdecl _get_osfhandle(int); int __cdecl _isatty(int); int __cdecl _locking(int,int,__msvcrt_long);