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
446a6b35
Commit
446a6b35
authored
Jan 06, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Use the correct type for findnext64.
parent
2a1ce301
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
dir.c
dlls/msvcrt/dir.c
+2
-2
wchar.h
include/msvcrt/wchar.h
+4
-4
No files found.
dlls/msvcrt/dir.c
View file @
446a6b35
...
...
@@ -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
;
...
...
include/msvcrt/wchar.h
View file @
446a6b35
...
...
@@ -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
*
);
...
...
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