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
25efb008
Commit
25efb008
authored
Aug 27, 2010
by
Piotr Caban
Committed by
Alexandre Julliard
Aug 27, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr90: Added _wstat64i32 implementation.
parent
3a25d7d9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
3 deletions
+17
-3
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.c
dlls/msvcr90/msvcr90.c
+14
-0
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
No files found.
dlls/msvcr100/msvcr100.spec
View file @
25efb008
...
...
@@ -1396,7 +1396,7 @@
@ stub _wstat32
@ stub _wstat32i64
@ cdecl _wstat64(wstr ptr) msvcrt._wstat64
@
stub
_wstat64i32
@
cdecl _wstat64i32(wstr ptr) msvcr90.
_wstat64i32
@ cdecl _wstrdate(ptr) msvcrt._wstrdate
@ cdecl _wstrdate_s(ptr long) msvcrt._wstrdate_s
@ cdecl _wstrtime(ptr) msvcrt._wstrtime
...
...
dlls/msvcr80/msvcr80.spec
View file @
25efb008
...
...
@@ -1252,7 +1252,7 @@
@ stub _wstat32
@ stub _wstat32i64
@ cdecl _wstat64(wstr ptr) msvcrt._wstat64
@
stub
_wstat64i32
@
cdecl _wstat64i32(wstr ptr) msvcr90.
_wstat64i32
@ cdecl _wstrdate(ptr) msvcrt._wstrdate
@ cdecl _wstrdate_s(ptr long) msvcrt._wstrdate_s
@ cdecl _wstrtime(ptr) msvcrt._wstrtime
...
...
dlls/msvcr90/msvcr90.c
View file @
25efb008
...
...
@@ -204,3 +204,17 @@ int CDECL _stat64i32(const char* path, struct _stat64i32 * buf)
msvcrt_stat64_to_stat64i32
(
&
buf64
,
buf
);
return
ret
;
}
/*********************************************************************
* _wstat64i32 (MSVCRT.@)
*/
int
CDECL
_wstat64i32
(
const
wchar_t
*
path
,
struct
_stat64i32
*
buf
)
{
int
ret
;
struct
_stat64
buf64
;
ret
=
_wstat64
(
path
,
&
buf64
);
if
(
!
ret
)
msvcrt_stat64_to_stat64i32
(
&
buf64
,
buf
);
return
ret
;
}
dlls/msvcr90/msvcr90.spec
View file @
25efb008
...
...
@@ -1236,7 +1236,7 @@
@ stub _wstat32
@ stub _wstat32i64
@ cdecl _wstat64(wstr ptr) msvcrt._wstat64
@
stub _wstat64i32
@
cdecl _wstat64i32(wstr ptr)
@ cdecl _wstrdate(ptr) msvcrt._wstrdate
@ cdecl _wstrdate_s(ptr long) msvcrt._wstrdate_s
@ cdecl _wstrtime(ptr) msvcrt._wstrtime
...
...
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