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
937ef127
Commit
937ef127
authored
Sep 28, 2017
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: PickIconDlg() is documented now.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c36e7d1e
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
14 deletions
+5
-14
dialogs.c
dlls/shell32/dialogs.c
+2
-7
shell32.spec
dlls/shell32/shell32.spec
+1
-1
undocshell.h
dlls/shell32/undocshell.h
+0
-6
shlobj.h
include/shlobj.h
+2
-0
No files found.
dlls/shell32/dialogs.c
View file @
937ef127
...
...
@@ -60,14 +60,9 @@ static void FillList (HWND, char *, BOOL) ;
* PickIconDlg [SHELL32.62]
*
*/
INT
WINAPI
PickIconDlg
(
HWND
hwndOwner
,
LPSTR
lpstrFile
,
DWORD
nMaxFile
,
LPDWORD
lpdwIconIndex
)
INT
WINAPI
PickIconDlg
(
HWND
hwndOwner
,
WCHAR
*
path
,
UINT
path_len
,
INT
*
index
)
{
FIXME
(
"(%p,%s,%08x,%p):stub.
\n
"
,
hwndOwner
,
lpstrFile
,
nMaxFile
,
lpdwIconIndex
);
FIXME
(
"(%p,%s,%u,%p):stub.
\n
"
,
hwndOwner
,
debugstr_w
(
path
),
path_len
,
index
);
return
0xffffffff
;
}
...
...
dlls/shell32/shell32.spec
View file @
937ef127
...
...
@@ -57,7 +57,7 @@
59 stdcall -ordinal RestartDialog(long wstr long)
60 stdcall -noname ExitWindowsDialog(long)
61 stdcall -noname RunFileDlg(long long str str str long) RunFileDlgAW
62 stdcall -ordinal PickIconDlg(long
p
tr long ptr)
62 stdcall -ordinal PickIconDlg(long
ws
tr long ptr)
63 stdcall -ordinal GetFileNameFromBrowse(long ptr long str str str str) GetFileNameFromBrowseAW
64 stdcall -ordinal DriveType(long)
65 stdcall -noname InvalidateDriveType(long)
...
...
dlls/shell32/undocshell.h
View file @
937ef127
...
...
@@ -79,12 +79,6 @@ BOOL WINAPI StrRetToStrNW(LPWSTR,DWORD,LPSTRRET,const ITEMIDLIST*);
* Shell Common Dialogs
*/
BOOL
WINAPI
PickIconDlg
(
HWND
hwndOwner
,
LPSTR
lpstrFile
,
DWORD
nMaxFile
,
LPDWORD
lpdwIconIndex
);
/* RunFileDlg flags */
#define RFF_NOBROWSE 0x01
#define RFF_NODEFAULT 0x02
...
...
include/shlobj.h
View file @
937ef127
...
...
@@ -1800,6 +1800,8 @@ HRESULT WINAPI CDefFolderMenu_Create2(LPCITEMIDLIST pidlFolder, HWND hwnd, UINT
LPFNDFMCALLBACK
lpfn
,
UINT
nKeys
,
const
HKEY
*
ahkeys
,
IContextMenu
**
ppcm
);
int
WINAPI
PickIconDlg
(
HWND
owner
,
WCHAR
*
path
,
UINT
path_len
,
int
*
index
);
#include <poppack.h>
#ifdef __cplusplus
...
...
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