msvcrt: Use the correct type for findnext64.

This commit is contained in:
Alexandre Julliard 2012-01-06 21:57:30 +01:00
parent 2a1ce301fa
commit 446a6b3556
2 changed files with 6 additions and 6 deletions

View file

@ -601,7 +601,7 @@ int CDECL MSVCRT__findnexti64(MSVCRT_intptr_t hand, struct MSVCRT__finddatai64_t
*
* 64-bit version of _findnext.
*/
int CDECL MSVCRT__findnext64(long hand, struct MSVCRT__finddata64_t * ft)
int CDECL MSVCRT__findnext64(MSVCRT_intptr_t hand, struct MSVCRT__finddata64_t * ft)
{
WIN32_FIND_DATAA find_data;
@ -639,7 +639,7 @@ int CDECL MSVCRT__wfindnext64(MSVCRT_intptr_t hand, struct MSVCRT__wfinddata64_t
*
* 64-bit/32-bit version of _findnext.
*/
int CDECL MSVCRT__findnext64i32(long hand, struct MSVCRT__finddata64i32_t * ft)
int CDECL MSVCRT__findnext64i32(MSVCRT_intptr_t hand, struct MSVCRT__finddata64i32_t * ft)
{
WIN32_FIND_DATAA find_data;

View file

@ -266,10 +266,10 @@ int __cdecl _wrmdir(const wchar_t*);
int __cdecl _waccess(const wchar_t*,int);
int __cdecl _wchmod(const wchar_t*,int);
int __cdecl _wcreat(const wchar_t*,int);
__msvcrt_long __cdecl _wfindfirst(const wchar_t*,struct _wfinddata_t*);
__msvcrt_long __cdecl _wfindfirsti64(const wchar_t*, struct _wfinddatai64_t*);
int __cdecl _wfindnext(__msvcrt_long,struct _wfinddata_t*);
int __cdecl _wfindnexti64(__msvcrt_long, struct _wfinddatai64_t*);
intptr_t __cdecl _wfindfirst(const wchar_t*,struct _wfinddata_t*);
intptr_t __cdecl _wfindfirsti64(const wchar_t*, struct _wfinddatai64_t*);
int __cdecl _wfindnext(intptr_t,struct _wfinddata_t*);
int __cdecl _wfindnexti64(intptr_t, struct _wfinddatai64_t*);
wchar_t* __cdecl _wmktemp(wchar_t*);
int __cdecl _wopen(const wchar_t*,int,...);
int __cdecl _wrename(const wchar_t*,const wchar_t*);