Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
1aad87ac
Commit
1aad87ac
authored
Oct 28, 2002
by
György 'Nog' Jeney
Committed by
Alexandre Julliard
Oct 28, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Copy the necessary data from the unicode struct to the ascii one in
DOSFS_FindNext.
parent
aeef9b4f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
dos_fs.c
files/dos_fs.c
+8
-0
No files found.
files/dos_fs.c
View file @
1aad87ac
...
@@ -1878,6 +1878,14 @@ int DOSFS_FindNext( const char *path, const char *short_mask,
...
@@ -1878,6 +1878,14 @@ int DOSFS_FindNext( const char *path, const char *short_mask,
WideCharToMultiByte
(
CP_ACP
,
0
,
entryW
.
cAlternateFileName
,
-
1
,
WideCharToMultiByte
(
CP_ACP
,
0
,
entryW
.
cAlternateFileName
,
-
1
,
entry
->
cAlternateFileName
,
sizeof
(
entry
->
cAlternateFileName
),
NULL
,
NULL
);
entry
->
cAlternateFileName
,
sizeof
(
entry
->
cAlternateFileName
),
NULL
,
NULL
);
count
=
info
.
cur_pos
-
skip
;
count
=
info
.
cur_pos
-
skip
;
entry
->
dwFileAttributes
=
entryW
.
dwFileAttributes
;
entry
->
nFileSizeHigh
=
entryW
.
nFileSizeHigh
;
entry
->
nFileSizeLow
=
entryW
.
nFileSizeLow
;
entry
->
ftCreationTime
=
entryW
.
ftCreationTime
;
entry
->
ftLastAccessTime
=
entryW
.
ftLastAccessTime
;
entry
->
ftLastWriteTime
=
entryW
.
ftLastWriteTime
;
}
}
else
else
count
=
0
;
count
=
0
;
...
...
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