mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 11:08:45 +00:00
shell32: PickIconDlg() is documented now.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c36e7d1ec7
commit
937ef12772
4 changed files with 6 additions and 15 deletions
|
@ -60,15 +60,10 @@ static void FillList (HWND, char *, BOOL) ;
|
||||||
* PickIconDlg [SHELL32.62]
|
* PickIconDlg [SHELL32.62]
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
INT WINAPI PickIconDlg(
|
INT WINAPI PickIconDlg(HWND hwndOwner, WCHAR *path, UINT path_len, INT *index)
|
||||||
HWND hwndOwner,
|
|
||||||
LPSTR lpstrFile,
|
|
||||||
DWORD nMaxFile,
|
|
||||||
LPDWORD lpdwIconIndex)
|
|
||||||
{
|
{
|
||||||
FIXME("(%p,%s,%08x,%p):stub.\n",
|
FIXME("(%p,%s,%u,%p):stub.\n", hwndOwner, debugstr_w(path), path_len, index);
|
||||||
hwndOwner, lpstrFile, nMaxFile,lpdwIconIndex);
|
return 0xffffffff;
|
||||||
return 0xffffffff;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
HRESULT WINAPI SHOpenWithDialog(HWND parent, const OPENASINFO *info)
|
HRESULT WINAPI SHOpenWithDialog(HWND parent, const OPENASINFO *info)
|
||||||
|
|
|
@ -57,7 +57,7 @@
|
||||||
59 stdcall -ordinal RestartDialog(long wstr long)
|
59 stdcall -ordinal RestartDialog(long wstr long)
|
||||||
60 stdcall -noname ExitWindowsDialog(long)
|
60 stdcall -noname ExitWindowsDialog(long)
|
||||||
61 stdcall -noname RunFileDlg(long long str str str long) RunFileDlgAW
|
61 stdcall -noname RunFileDlg(long long str str str long) RunFileDlgAW
|
||||||
62 stdcall -ordinal PickIconDlg(long ptr long ptr)
|
62 stdcall -ordinal PickIconDlg(long wstr long ptr)
|
||||||
63 stdcall -ordinal GetFileNameFromBrowse(long ptr long str str str str) GetFileNameFromBrowseAW
|
63 stdcall -ordinal GetFileNameFromBrowse(long ptr long str str str str) GetFileNameFromBrowseAW
|
||||||
64 stdcall -ordinal DriveType(long)
|
64 stdcall -ordinal DriveType(long)
|
||||||
65 stdcall -noname InvalidateDriveType(long)
|
65 stdcall -noname InvalidateDriveType(long)
|
||||||
|
|
|
@ -79,12 +79,6 @@ BOOL WINAPI StrRetToStrNW(LPWSTR,DWORD,LPSTRRET,const ITEMIDLIST*);
|
||||||
* Shell Common Dialogs
|
* Shell Common Dialogs
|
||||||
*/
|
*/
|
||||||
|
|
||||||
BOOL WINAPI PickIconDlg(
|
|
||||||
HWND hwndOwner,
|
|
||||||
LPSTR lpstrFile,
|
|
||||||
DWORD nMaxFile,
|
|
||||||
LPDWORD lpdwIconIndex);
|
|
||||||
|
|
||||||
/* RunFileDlg flags */
|
/* RunFileDlg flags */
|
||||||
#define RFF_NOBROWSE 0x01
|
#define RFF_NOBROWSE 0x01
|
||||||
#define RFF_NODEFAULT 0x02
|
#define RFF_NODEFAULT 0x02
|
||||||
|
|
|
@ -1800,6 +1800,8 @@ HRESULT WINAPI CDefFolderMenu_Create2(LPCITEMIDLIST pidlFolder, HWND hwnd, UINT
|
||||||
LPFNDFMCALLBACK lpfn, UINT nKeys, const HKEY *ahkeys,
|
LPFNDFMCALLBACK lpfn, UINT nKeys, const HKEY *ahkeys,
|
||||||
IContextMenu **ppcm);
|
IContextMenu **ppcm);
|
||||||
|
|
||||||
|
int WINAPI PickIconDlg(HWND owner, WCHAR *path, UINT path_len, int *index);
|
||||||
|
|
||||||
#include <poppack.h>
|
#include <poppack.h>
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Loading…
Reference in a new issue