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
d8860641
Commit
d8860641
authored
Jun 14, 2004
by
Ulrich Czekalla
Committed by
Alexandre Julliard
Jun 14, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented RealDriveType.
parent
afcf01ff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
shell32.spec
dlls/shell32/shell32.spec
+1
-1
shlfileop.c
dlls/shell32/shlfileop.c
+11
-0
No files found.
dlls/shell32/shell32.spec
View file @
d8860641
...
...
@@ -282,7 +282,7 @@
521 stdcall SHLockShared (long long)
522 stdcall SHUnlockShared (long)
523 stdcall SHFreeShared (long long)
524 st
ub RealDriveType
524 st
dcall RealDriveType (long long)
525 stub RealDriveTypeFlags
640 stdcall NTSHChangeNotifyRegister (long long long long long long)
...
...
dlls/shell32/shlfileop.c
View file @
d8860641
...
...
@@ -1310,3 +1310,14 @@ BOOL WINAPI IsNetDrive(DWORD drive)
root
[
0
]
+=
(
char
)
drive
;
return
(
GetDriveTypeA
(
root
)
==
DRIVE_REMOTE
);
}
/*************************************************************************
* RealDriveType [SHELL32.524]
*/
INT
WINAPI
RealDriveType
(
INT
drive
,
BOOL
bQueryNet
)
{
char
root
[]
=
"A:
\\
"
;
root
[
0
]
+=
(
char
)
drive
;
return
GetDriveTypeA
(
root
);
}
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