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
e0f1bac4
Commit
e0f1bac4
authored
Jan 06, 2012
by
Daniel Lehman
Committed by
Alexandre Julliard
Jan 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add struct and prototypes for existing _findfirst64 and _findnext64.
parent
85559848
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
io.h
include/msvcrt/io.h
+12
-0
No files found.
include/msvcrt/io.h
View file @
e0f1bac4
...
...
@@ -47,6 +47,16 @@ struct _finddatai64_t
__int64
DECLSPEC_ALIGN
(
8
)
size
;
char
name
[
260
];
};
struct
_finddata64_t
{
unsigned
attrib
;
__time64_t
time_create
;
__time64_t
time_access
;
__time64_t
time_write
;
__int64
DECLSPEC_ALIGN
(
8
)
size
;
char
name
[
260
];
};
#endif
/* _FINDDATA_T_DEFINED */
#ifndef _WFINDDATA_T_DEFINED
...
...
@@ -88,8 +98,10 @@ __msvcrt_long __cdecl _filelength(int);
int
__cdecl
_findclose
(
intptr_t
);
intptr_t
__cdecl
_findfirst
(
const
char
*
,
struct
_finddata_t
*
);
intptr_t
__cdecl
_findfirsti64
(
const
char
*
,
struct
_finddatai64_t
*
);
intptr_t
__cdecl
_findfirst64
(
const
char
*
,
struct
_finddata64_t
*
);
int
__cdecl
_findnext
(
intptr_t
,
struct
_finddata_t
*
);
int
__cdecl
_findnexti64
(
intptr_t
,
struct
_finddatai64_t
*
);
int
__cdecl
_findnext64
(
intptr_t
,
struct
_finddata64_t
*
);
intptr_t
__cdecl
_get_osfhandle
(
int
);
int
__cdecl
_isatty
(
int
);
int
__cdecl
_locking
(
int
,
int
,
__msvcrt_long
);
...
...
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