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
086ba9ea
Commit
086ba9ea
authored
Feb 01, 2022
by
Zebediah Figura
Committed by
Alexandre Julliard
Feb 02, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Move dialog definitions to dialog.c.
Signed-off-by:
Zebediah Figura
<
zfigura@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6d7f9a9b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
52 deletions
+21
-52
dialogs.c
dlls/shell32/dialogs.c
+21
-0
undocshell.h
dlls/shell32/undocshell.h
+0
-52
No files found.
dlls/shell32/dialogs.c
View file @
086ba9ea
...
@@ -36,6 +36,27 @@
...
@@ -36,6 +36,27 @@
#include "shresdef.h"
#include "shresdef.h"
#include "undocshell.h"
#include "undocshell.h"
/* RunFileDlg flags */
#define RFF_NOBROWSE 0x01
#define RFF_NODEFAULT 0x02
#define RFF_CALCDIRECTORY 0x04
#define RFF_NOLABEL 0x08
#define RFF_NOSEPARATEMEM 0x20
/* NT only */
/* RunFileFlg notification structure */
typedef
struct
{
NMHDR
hdr
;
const
char
*
lpFile
;
const
char
*
lpDirectory
;
int
nShow
;
}
NM_RUNFILEDLG
;
/* RunFileDlg notification return values */
#define RF_OK 0x00
#define RF_CANCEL 0x01
#define RF_RETRY 0x02
typedef
struct
typedef
struct
{
{
HWND
hwndOwner
;
HWND
hwndOwner
;
...
...
dlls/shell32/undocshell.h
View file @
086ba9ea
...
@@ -38,58 +38,6 @@ BOOL WINAPI StrRetToStrNA(LPSTR,DWORD,LPSTRRET,const ITEMIDLIST*);
...
@@ -38,58 +38,6 @@ BOOL WINAPI StrRetToStrNA(LPSTR,DWORD,LPSTRRET,const ITEMIDLIST*);
BOOL
WINAPI
StrRetToStrNW
(
LPWSTR
,
DWORD
,
LPSTRRET
,
const
ITEMIDLIST
*
);
BOOL
WINAPI
StrRetToStrNW
(
LPWSTR
,
DWORD
,
LPSTRRET
,
const
ITEMIDLIST
*
);
/****************************************************************************
/****************************************************************************
* Shell Common Dialogs
*/
/* RunFileDlg flags */
#define RFF_NOBROWSE 0x01
#define RFF_NODEFAULT 0x02
#define RFF_CALCDIRECTORY 0x04
#define RFF_NOLABEL 0x08
#define RFF_NOSEPARATEMEM 0x20
/* NT only */
/* RunFileFlg notification structure */
typedef
struct
{
NMHDR
hdr
;
LPCSTR
lpFile
;
LPCSTR
lpDirectory
;
int
nShow
;
}
NM_RUNFILEDLG
,
*
LPNM_RUNFILEDLG
;
/* RunFileDlg notification return values */
#define RF_OK 0x00
#define RF_CANCEL 0x01
#define RF_RETRY 0x02
void
WINAPI
RunFileDlg
(
HWND
hwndOwner
,
HICON
hIcon
,
LPCSTR
lpstrDirectory
,
LPCSTR
lpstrTitle
,
LPCSTR
lpstrDescription
,
UINT
uFlags
);
void
WINAPI
ExitWindowsDialog
(
HWND
hwndOwner
);
BOOL
WINAPI
SHFindComputer
(
LPCITEMIDLIST
pidlRoot
,
LPCITEMIDLIST
pidlSavedSearch
);
void
WINAPI
SHHandleDiskFull
(
HWND
hwndOwner
,
UINT
uDrive
);
int
WINAPI
SHOutOfMemoryMessageBox
(
HWND
hwndOwner
,
LPCSTR
lpCaption
,
UINT
uType
);
DWORD
WINAPI
SHNetConnectionDialog
(
HWND
hwndOwner
,
LPCSTR
lpstrRemoteName
,
DWORD
dwType
);
/****************************************************************************
* Memory Routines
* Memory 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