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
79ea850e
Commit
79ea850e
authored
Sep 24, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Add some more function prototypes and fix the IsNetDrive() one.
parent
e2f30dc1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
shlfileop.c
dlls/shell32/shlfileop.c
+2
-2
shlobj.h
include/shlobj.h
+5
-0
No files found.
dlls/shell32/shlfileop.c
View file @
79ea850e
...
@@ -1708,7 +1708,7 @@ DWORD WINAPI SheChangeDirW(LPWSTR path)
...
@@ -1708,7 +1708,7 @@ DWORD WINAPI SheChangeDirW(LPWSTR path)
/*************************************************************************
/*************************************************************************
* IsNetDrive [SHELL32.66]
* IsNetDrive [SHELL32.66]
*/
*/
BOOL
WINAPI
IsNetDrive
(
DWORD
drive
)
int
WINAPI
IsNetDrive
(
int
drive
)
{
{
char
root
[
4
];
char
root
[
4
];
strcpy
(
root
,
"A:
\\
"
);
strcpy
(
root
,
"A:
\\
"
);
...
@@ -1720,7 +1720,7 @@ BOOL WINAPI IsNetDrive(DWORD drive)
...
@@ -1720,7 +1720,7 @@ BOOL WINAPI IsNetDrive(DWORD drive)
/*************************************************************************
/*************************************************************************
* RealDriveType [SHELL32.524]
* RealDriveType [SHELL32.524]
*/
*/
INT
WINAPI
RealDriveType
(
INT
drive
,
BOOL
bQueryNet
)
int
WINAPI
RealDriveType
(
int
drive
,
BOOL
bQueryNet
)
{
{
char
root
[]
=
"A:
\\
"
;
char
root
[]
=
"A:
\\
"
;
root
[
0
]
+=
(
char
)
drive
;
root
[
0
]
+=
(
char
)
drive
;
...
...
include/shlobj.h
View file @
79ea850e
...
@@ -83,6 +83,8 @@ VOID WINAPI SHUpdateImageW(LPCWSTR,INT,UINT,INT);
...
@@ -83,6 +83,8 @@ VOID WINAPI SHUpdateImageW(LPCWSTR,INT,UINT,INT);
int
WINAPI
RestartDialog
(
HWND
,
LPCWSTR
,
DWORD
);
int
WINAPI
RestartDialog
(
HWND
,
LPCWSTR
,
DWORD
);
int
WINAPI
RestartDialogEx
(
HWND
,
LPCWSTR
,
DWORD
,
DWORD
);
int
WINAPI
RestartDialogEx
(
HWND
,
LPCWSTR
,
DWORD
,
DWORD
);
int
WINAPI
DriveType
(
int
);
int
WINAPI
DriveType
(
int
);
int
WINAPI
RealDriveType
(
int
,
BOOL
);
int
WINAPI
IsNetDrive
(
int
);
BOOL
WINAPI
IsUserAnAdmin
(
void
);
BOOL
WINAPI
IsUserAnAdmin
(
void
);
UINT
WINAPI
Shell_MergeMenus
(
HMENU
,
HMENU
,
UINT
,
UINT
,
UINT
,
ULONG
);
UINT
WINAPI
Shell_MergeMenus
(
HMENU
,
HMENU
,
UINT
,
UINT
,
UINT
,
ULONG
);
BOOL
WINAPI
Shell_GetImageLists
(
HIMAGELIST
*
,
HIMAGELIST
*
);
BOOL
WINAPI
Shell_GetImageLists
(
HIMAGELIST
*
,
HIMAGELIST
*
);
...
@@ -1636,10 +1638,13 @@ BOOL WINAPI WriteCabinetState(CABINETSTATE *);
...
@@ -1636,10 +1638,13 @@ BOOL WINAPI WriteCabinetState(CABINETSTATE *);
#define PRF_TRYPROGRAMEXTENSIONS 0x03
#define PRF_TRYPROGRAMEXTENSIONS 0x03
#define PRF_FIRSTDIRDEF 0x04
#define PRF_FIRSTDIRDEF 0x04
#define PRF_DONTFINDLINK 0x08
#define PRF_DONTFINDLINK 0x08
#define PRF_REQUIREABSOLUTE 0x10
VOID
WINAPI
PathGetShortPath
(
LPWSTR
pszPath
);
VOID
WINAPI
PathGetShortPath
(
LPWSTR
pszPath
);
LONG
WINAPI
PathProcessCommand
(
LPCWSTR
,
LPWSTR
,
int
,
DWORD
);
LONG
WINAPI
PathProcessCommand
(
LPCWSTR
,
LPWSTR
,
int
,
DWORD
);
int
WINAPI
PathResolve
(
LPWSTR
,
PZPCWSTR
,
UINT
);
BOOL
WINAPI
PathYetAnotherMakeUniqueName
(
LPWSTR
,
LPCWSTR
,
LPCWSTR
,
LPCWSTR
);
BOOL
WINAPI
PathYetAnotherMakeUniqueName
(
LPWSTR
,
LPCWSTR
,
LPCWSTR
,
LPCWSTR
);
BOOL
WINAPI
Win32DeleteFile
(
LPCWSTR
);
/****************************************************************************
/****************************************************************************
* Drag And Drop Routines
* Drag And Drop Routines
...
...
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