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
429d7a27
Commit
429d7a27
authored
Oct 26, 2007
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Oct 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Improve stub for PrintDlgEx.
parent
2be2c1ac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
15 deletions
+38
-15
printdlg.c
dlls/comdlg32/printdlg.c
+38
-15
No files found.
dlls/comdlg32/printdlg.c
View file @
429d7a27
...
@@ -3568,25 +3568,33 @@ BOOL WINAPI PageSetupDlgW(LPPAGESETUPDLGW setupdlg) {
...
@@ -3568,25 +3568,33 @@ BOOL WINAPI PageSetupDlgW(LPPAGESETUPDLGW setupdlg) {
}
}
/***********************************************************************
/***********************************************************************
*
PrintDlgExA (COMDLG32.@)
*
PrintDlgExA (COMDLG32.@)
*
*
* See PrintDlgExW.
* See PrintDlgExW.
*
*
* FIXME
* BUGS
* Stub
* Only a Stub
*
*/
*/
HRESULT
WINAPI
PrintDlgExA
(
LPPRINTDLGEXA
lp
PrintDlgExA
)
HRESULT
WINAPI
PrintDlgExA
(
LPPRINTDLGEXA
lp
pd
)
{
{
FIXME
(
"stub
\n
"
);
return
E_NOTIMPL
;
FIXME
(
"(%p) stub
\n
"
,
lppd
);
if
((
lppd
==
NULL
)
||
(
lppd
->
lStructSize
!=
sizeof
(
PRINTDLGEXA
)))
{
return
E_INVALIDARG
;
}
if
(
!
IsWindow
(
lppd
->
hwndOwner
))
{
return
E_HANDLE
;
}
return
E_NOTIMPL
;
}
}
/***********************************************************************
/***********************************************************************
*
PrintDlgExW (COMDLG32.@)
*
PrintDlgExW (COMDLG32.@)
*
*
* Displays the PRINT dialog box, which enables the user to specify
* Display the property sheet style PRINT dialog box
* specific properties of the print job. The property sheet can also have
* additional application-specific and driver-specific property pages.
*
*
* PARAMS
* PARAMS
* lppd [IO] ptr to PRINTDLGEX struct
* lppd [IO] ptr to PRINTDLGEX struct
...
@@ -3600,11 +3608,26 @@ HRESULT WINAPI PrintDlgExA(LPPRINTDLGEXA lpPrintDlgExA)
...
@@ -3600,11 +3608,26 @@ HRESULT WINAPI PrintDlgExA(LPPRINTDLGEXA lpPrintDlgExA)
* E_HANDLE Invalid handle.
* E_HANDLE Invalid handle.
* E_FAIL Unspecified error.
* E_FAIL Unspecified error.
*
*
* FIXME
* NOTES
* Stub
* This Dialog enables the user to specify specific properties of the print job.
* The property sheet can also have additional application-specific and
* driver-specific property pages.
*
* BUGS
* Only a Stub
*
*/
*/
HRESULT
WINAPI
PrintDlgExW
(
LPPRINTDLGEXW
lp
PrintDlgExW
)
HRESULT
WINAPI
PrintDlgExW
(
LPPRINTDLGEXW
lp
pd
)
{
{
FIXME
(
"stub
\n
"
);
return
E_NOTIMPL
;
FIXME
(
"(%p) stub
\n
"
,
lppd
);
if
((
lppd
==
NULL
)
||
(
lppd
->
lStructSize
!=
sizeof
(
PRINTDLGEXW
)))
{
return
E_INVALIDARG
;
}
if
(
!
IsWindow
(
lppd
->
hwndOwner
))
{
return
E_HANDLE
;
}
return
E_NOTIMPL
;
}
}
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