Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
79ea850e
Commit
79ea850e
authored
12 years ago
by
Francois Gouget
Committed by
Alexandre Julliard
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
shell32: Add some more function prototypes and fix the IsNetDrive() one.
parent
e2f30dc1
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/shell32/shlfileop.c
+2
-2
2 additions, 2 deletions
dlls/shell32/shlfileop.c
include/shlobj.h
+5
-0
5 additions, 0 deletions
include/shlobj.h
with
7 additions
and
2 deletions
dlls/shell32/shlfileop.c
+
2
−
2
View file @
79ea850e
...
...
@@ -1708,7 +1708,7 @@ DWORD WINAPI SheChangeDirW(LPWSTR path)
/*************************************************************************
* IsNetDrive [SHELL32.66]
*/
BOOL
WINAPI
IsNetDrive
(
DWORD
drive
)
int
WINAPI
IsNetDrive
(
int
drive
)
{
char
root
[
4
];
strcpy
(
root
,
"A:
\\
"
);
...
...
@@ -1720,7 +1720,7 @@ BOOL WINAPI IsNetDrive(DWORD drive)
/*************************************************************************
* RealDriveType [SHELL32.524]
*/
INT
WINAPI
RealDriveType
(
INT
drive
,
BOOL
bQueryNet
)
int
WINAPI
RealDriveType
(
int
drive
,
BOOL
bQueryNet
)
{
char
root
[]
=
"A:
\\
"
;
root
[
0
]
+=
(
char
)
drive
;
...
...
This diff is collapsed.
Click to expand it.
include/shlobj.h
+
5
−
0
View file @
79ea850e
...
...
@@ -83,6 +83,8 @@ VOID WINAPI SHUpdateImageW(LPCWSTR,INT,UINT,INT);
int
WINAPI
RestartDialog
(
HWND
,
LPCWSTR
,
DWORD
);
int
WINAPI
RestartDialogEx
(
HWND
,
LPCWSTR
,
DWORD
,
DWORD
);
int
WINAPI
DriveType
(
int
);
int
WINAPI
RealDriveType
(
int
,
BOOL
);
int
WINAPI
IsNetDrive
(
int
);
BOOL
WINAPI
IsUserAnAdmin
(
void
);
UINT
WINAPI
Shell_MergeMenus
(
HMENU
,
HMENU
,
UINT
,
UINT
,
UINT
,
ULONG
);
BOOL
WINAPI
Shell_GetImageLists
(
HIMAGELIST
*
,
HIMAGELIST
*
);
...
...
@@ -1636,10 +1638,13 @@ BOOL WINAPI WriteCabinetState(CABINETSTATE *);
#define PRF_TRYPROGRAMEXTENSIONS 0x03
#define PRF_FIRSTDIRDEF 0x04
#define PRF_DONTFINDLINK 0x08
#define PRF_REQUIREABSOLUTE 0x10
VOID
WINAPI
PathGetShortPath
(
LPWSTR
pszPath
);
LONG
WINAPI
PathProcessCommand
(
LPCWSTR
,
LPWSTR
,
int
,
DWORD
);
int
WINAPI
PathResolve
(
LPWSTR
,
PZPCWSTR
,
UINT
);
BOOL
WINAPI
PathYetAnotherMakeUniqueName
(
LPWSTR
,
LPCWSTR
,
LPCWSTR
,
LPCWSTR
);
BOOL
WINAPI
Win32DeleteFile
(
LPCWSTR
);
/****************************************************************************
* Drag And Drop Routines
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment