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
2250f12c
Commit
2250f12c
authored
Jun 01, 2000
by
Juergen Schmied
Committed by
Alexandre Julliard
Jun 01, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented FindFirstFileEx, cleaned old implementation up.
parent
207f7019
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
3 deletions
+19
-3
dos_fs.c
files/dos_fs.c
+0
-0
winbase.h
include/winbase.h
+17
-0
kernel32.spec
relay32/kernel32.spec
+2
-3
No files found.
files/dos_fs.c
View file @
2250f12c
This diff is collapsed.
Click to expand it.
include/winbase.h
View file @
2250f12c
...
...
@@ -201,6 +201,20 @@ typedef struct
DECL_WINELIB_TYPE_AW
(
WIN32_FIND_DATA
)
DECL_WINELIB_TYPE_AW
(
LPWIN32_FIND_DATA
)
typedef
enum
_FINDEX_INFO_LEVELS
{
FindExInfoStandard
,
FindExInfoMaxInfoLevel
}
FINDEX_INFO_LEVELS
;
typedef
enum
_FINDEX_SEARCH_OPS
{
FindExSearchNameMatch
,
FindExSearchLimitToDirectories
,
FindExSearchLimitToDevices
,
FindExSearchMaxSearchOp
}
FINDEX_SEARCH_OPS
;
typedef
struct
{
LPVOID
lpData
;
...
...
@@ -1492,6 +1506,9 @@ HANDLE16 WINAPI FindFirstFile16(LPCSTR,LPWIN32_FIND_DATAA);
HANDLE
WINAPI
FindFirstFileA
(
LPCSTR
,
LPWIN32_FIND_DATAA
);
HANDLE
WINAPI
FindFirstFileW
(
LPCWSTR
,
LPWIN32_FIND_DATAW
);
#define FindFirstFile WINELIB_NAME_AW(FindFirstFile)
HANDLE
WINAPI
FindFirstFileExA
(
LPCSTR
,
FINDEX_INFO_LEVELS
,
LPVOID
,
FINDEX_SEARCH_OPS
,
LPVOID
,
DWORD
);
HANDLE
WINAPI
FindFirstFileExW
(
LPCWSTR
,
FINDEX_INFO_LEVELS
,
LPVOID
,
FINDEX_SEARCH_OPS
,
LPVOID
,
DWORD
);
#define FindFirstFileEx WINELIB_NAME_AW(FindFirstFileEx)
BOOL16
WINAPI
FindNextFile16
(
HANDLE16
,
LPWIN32_FIND_DATAA
);
BOOL
WINAPI
FindNextFileA
(
HANDLE
,
LPWIN32_FIND_DATAA
);
BOOL
WINAPI
FindNextFileW
(
HANDLE
,
LPWIN32_FIND_DATAW
);
...
...
relay32/kernel32.spec
View file @
2250f12c
...
...
@@ -881,8 +881,8 @@ import ntdll.dll
862 stdcall CreateWaitableTimerW(ptr long wstr) CreateWaitableTimerW
863 stub DeleteFiber
864 stub DuplicateConsoleHandle
865 st
ub
FindFirstFileExA
866 st
ub
FindFirstFileExW
865 st
dcall FindFirstFileExA(str long ptr long ptr long)
FindFirstFileExA
866 st
dcall FindFirstFileExW(wstr long ptr long ptr long)
FindFirstFileExW
867 stub GetConsoleInputExeNameA
868 stub GetConsoleInputExeNameW
869 stub GetConsoleKeyboardLayoutNameA
...
...
@@ -927,4 +927,3 @@ import ntdll.dll
#1599 wrong ordinal (249 in Win32s's W32SCOMB.DLL) !
1599 stdcall Get16DLLAddress(long str) Get16DLLAddress
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