Commit c03e5ed3 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

msvcrt: Added _wfindnext32().

parent b8140565
......@@ -43,7 +43,7 @@
@ stub _wfindfirst32i64
@ cdecl _wfindfirst64(wstr ptr) ucrtbase._wfindfirst64
@ cdecl _wfindfirst64i32(wstr ptr) ucrtbase._wfindfirst64i32
@ stub _wfindnext32
@ cdecl _wfindnext32(long ptr) ucrtbase._wfindnext32
@ stub _wfindnext32i64
@ cdecl _wfindnext64(long ptr) ucrtbase._wfindnext64
@ cdecl _wfindnext64i32(long ptr) ucrtbase._wfindnext64i32
......
......@@ -1547,7 +1547,7 @@
@ stub _wfindfirst32i64
@ cdecl _wfindfirst64(wstr ptr) MSVCRT__wfindfirst64
@ cdecl _wfindfirst64i32(wstr ptr) MSVCRT__wfindfirst64i32
@ stub _wfindnext32
@ cdecl _wfindnext32(long ptr) MSVCRT__wfindnext32
@ stub _wfindnext32i64
@ cdecl _wfindnext64(long ptr) MSVCRT__wfindnext64
@ cdecl _wfindnext64i32(long ptr) MSVCRT__wfindnext64i32
......
......@@ -1905,7 +1905,7 @@
@ stub _wfindfirst32i64
@ cdecl _wfindfirst64(wstr ptr) MSVCRT__wfindfirst64
@ cdecl _wfindfirst64i32(wstr ptr) MSVCRT__wfindfirst64i32
@ stub _wfindnext32
@ cdecl _wfindnext32(long ptr) MSVCRT__wfindnext32
@ stub _wfindnext32i64
@ cdecl _wfindnext64(long ptr) MSVCRT__wfindnext64
@ cdecl _wfindnext64i32(long ptr) MSVCRT__wfindnext64i32
......
......@@ -1929,7 +1929,7 @@
@ stub _wfindfirst32i64
@ cdecl _wfindfirst64(wstr ptr) MSVCRT__wfindfirst64
@ cdecl _wfindfirst64i32(wstr ptr) MSVCRT__wfindfirst64i32
@ stub _wfindnext32
@ cdecl _wfindnext32(long ptr) MSVCRT__wfindnext32
@ stub _wfindnext32i64
@ cdecl _wfindnext64(long ptr) MSVCRT__wfindnext64
@ cdecl _wfindnext64i32(long ptr) MSVCRT__wfindnext64i32
......
......@@ -1613,7 +1613,7 @@
@ stub _wfindfirst32i64
@ cdecl _wfindfirst64(wstr ptr) msvcr120._wfindfirst64
@ cdecl _wfindfirst64i32(wstr ptr) msvcr120._wfindfirst64i32
@ stub _wfindnext32
@ cdecl _wfindnext32(long ptr) msvcr120._wfindnext32
@ stub _wfindnext32i64
@ cdecl _wfindnext64(long ptr) msvcr120._wfindnext64
@ cdecl _wfindnext64i32(long ptr) msvcr120._wfindnext64i32
......
......@@ -1226,7 +1226,7 @@
@ stub _wfindfirst32i64
@ cdecl _wfindfirst64(wstr ptr) MSVCRT__wfindfirst64
@ cdecl _wfindfirst64i32(wstr ptr) MSVCRT__wfindfirst64i32
@ stub _wfindnext32
@ cdecl _wfindnext32(long ptr) MSVCRT__wfindnext32
@ stub _wfindnext32i64
@ cdecl _wfindnext64(long ptr) MSVCRT__wfindnext64
@ cdecl _wfindnext64i32(long ptr) MSVCRT__wfindnext64i32
......
......@@ -1202,7 +1202,7 @@
@ stub _wfindfirst32i64
@ cdecl _wfindfirst64(wstr ptr) MSVCRT__wfindfirst64
@ cdecl _wfindfirst64i32(wstr ptr) MSVCRT__wfindfirst64i32
@ stub _wfindnext32
@ cdecl _wfindnext32(long ptr) MSVCRT__wfindnext32
@ stub _wfindnext32i64
@ cdecl _wfindnext64(long ptr) MSVCRT__wfindnext64
@ cdecl _wfindnext64i32(long ptr) MSVCRT__wfindnext64i32
......
......@@ -599,6 +599,23 @@ int CDECL MSVCRT__findnext32(MSVCRT_intptr_t hand, struct MSVCRT__finddata32_t *
}
/*********************************************************************
* _wfindnext32 (MSVCRT.@)
*/
int CDECL MSVCRT__wfindnext32(MSVCRT_intptr_t hand, struct MSVCRT__wfinddata32_t * ft)
{
WIN32_FIND_DATAW find_data;
if (!FindNextFileW((HANDLE)hand, &find_data))
{
*MSVCRT__errno() = MSVCRT_ENOENT;
return -1;
}
msvcrt_wfttofd32(&find_data, ft);
return 0;
}
/*********************************************************************
* _wfindnext (MSVCRT.@)
*
* Unicode version of _findnext.
......
......@@ -2077,7 +2077,7 @@
@ stub _wfindfirst32i64
@ cdecl _wfindfirst64(wstr ptr) MSVCRT__wfindfirst64
@ cdecl _wfindfirst64i32(wstr ptr) MSVCRT__wfindfirst64i32
@ stub _wfindnext32
@ cdecl _wfindnext32(long ptr) MSVCRT__wfindnext32
@ stub _wfindnext32i64
@ cdecl _wfindnext64(long ptr) MSVCRT__wfindnext64
@ cdecl _wfindnext64i32(long ptr) MSVCRT__wfindnext64i32
......
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