Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
40874d91
Commit
40874d91
authored
Nov 20, 2010
by
Eryk Wieliczko
Committed by
Alexandre Julliard
Nov 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Implement _wfindnext64i32.
parent
7d508097
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
3 deletions
+23
-3
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
dir.c
dlls/msvcrt/dir.c
+19
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-0
No files found.
dlls/msvcr100/msvcr100.spec
View file @
40874d91
...
@@ -1345,7 +1345,7 @@
...
@@ -1345,7 +1345,7 @@
@ stub _wfindnext32
@ stub _wfindnext32
@ stub _wfindnext32i64
@ stub _wfindnext32i64
@ stub _wfindnext64
@ stub _wfindnext64
@
stub
_wfindnext64i32
@
cdecl _wfindnext64i32(wstr ptr) msvcrt.
_wfindnext64i32
@ cdecl _wfopen(wstr wstr) msvcrt._wfopen
@ cdecl _wfopen(wstr wstr) msvcrt._wfopen
@ cdecl _wfopen_s(ptr wstr wstr) msvcrt._wfopen_s
@ cdecl _wfopen_s(ptr wstr wstr) msvcrt._wfopen_s
@ cdecl _wfreopen(wstr wstr ptr) msvcrt._wfreopen
@ cdecl _wfreopen(wstr wstr ptr) msvcrt._wfreopen
...
...
dlls/msvcr80/msvcr80.spec
View file @
40874d91
...
@@ -1198,7 +1198,7 @@
...
@@ -1198,7 +1198,7 @@
@ stub _wfindnext32
@ stub _wfindnext32
@ stub _wfindnext32i64
@ stub _wfindnext32i64
@ stub _wfindnext64
@ stub _wfindnext64
@
stub
_wfindnext64i32
@
cdecl _wfindnext64i32(wstr ptr) msvcrt.
_wfindnext64i32
@ cdecl _wfopen(wstr wstr) msvcrt._wfopen
@ cdecl _wfopen(wstr wstr) msvcrt._wfopen
@ cdecl _wfopen_s(ptr wstr wstr) msvcrt._wfopen_s
@ cdecl _wfopen_s(ptr wstr wstr) msvcrt._wfopen_s
@ cdecl _wfreopen(wstr wstr ptr) msvcrt._wfreopen
@ cdecl _wfreopen(wstr wstr ptr) msvcrt._wfreopen
...
...
dlls/msvcr90/msvcr90.spec
View file @
40874d91
...
@@ -1185,7 +1185,7 @@
...
@@ -1185,7 +1185,7 @@
@ stub _wfindnext32
@ stub _wfindnext32
@ stub _wfindnext32i64
@ stub _wfindnext32i64
@ stub _wfindnext64
@ stub _wfindnext64
@
stub
_wfindnext64i32
@
cdecl _wfindnext64i32(wstr ptr) msvcrt.
_wfindnext64i32
@ cdecl _wfopen(wstr wstr) msvcrt._wfopen
@ cdecl _wfopen(wstr wstr) msvcrt._wfopen
@ cdecl _wfopen_s(ptr wstr wstr) msvcrt._wfopen_s
@ cdecl _wfopen_s(ptr wstr wstr) msvcrt._wfopen_s
@ cdecl _wfreopen(wstr wstr ptr) msvcrt._wfreopen
@ cdecl _wfreopen(wstr wstr ptr) msvcrt._wfreopen
...
...
dlls/msvcrt/dir.c
View file @
40874d91
...
@@ -557,6 +557,25 @@ int CDECL MSVCRT__wfindnexti64(MSVCRT_intptr_t hand, struct MSVCRT__wfinddatai64
...
@@ -557,6 +557,25 @@ int CDECL MSVCRT__wfindnexti64(MSVCRT_intptr_t hand, struct MSVCRT__wfinddatai64
}
}
/*********************************************************************
/*********************************************************************
* _wfindnext64i32 (MSVCRT.@)
*
* Unicode version of _findnext64i32.
*/
int
CDECL
MSVCRT__wfindnext64i32
(
MSVCRT_intptr_t
hand
,
struct
MSVCRT__wfinddata64i32_t
*
ft
)
{
WIN32_FIND_DATAW
find_data
;
if
(
!
FindNextFileW
((
HANDLE
)
hand
,
&
find_data
))
{
*
MSVCRT__errno
()
=
MSVCRT_ENOENT
;
return
-
1
;
}
msvcrt_wfttofd64i32
(
&
find_data
,
ft
);
return
0
;
}
/*********************************************************************
* _getcwd (MSVCRT.@)
* _getcwd (MSVCRT.@)
*
*
* Get the current working directory.
* Get the current working directory.
...
...
dlls/msvcrt/msvcrt.spec
View file @
40874d91
...
@@ -1117,6 +1117,7 @@
...
@@ -1117,6 +1117,7 @@
@ cdecl _wfindfirst64i32(wstr ptr) MSVCRT__wfindfirst64i32
@ cdecl _wfindfirst64i32(wstr ptr) MSVCRT__wfindfirst64i32
@ cdecl _wfindnext(long ptr) MSVCRT__wfindnext
@ cdecl _wfindnext(long ptr) MSVCRT__wfindnext
# stub _wfindnext64
# stub _wfindnext64
@ cdecl _wfindnext64i32(long ptr) MSVCRT__wfindnext64i32
@ cdecl _wfindnexti64(long ptr) MSVCRT__wfindnexti64
@ cdecl _wfindnexti64(long ptr) MSVCRT__wfindnexti64
@ cdecl _wfopen(wstr wstr) MSVCRT__wfopen
@ cdecl _wfopen(wstr wstr) MSVCRT__wfopen
@ cdecl _wfopen_s(ptr wstr wstr) MSVCRT__wfopen_s
@ cdecl _wfopen_s(ptr wstr wstr) MSVCRT__wfopen_s
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment