comdlg32: Improve stub for PrintDlgEx.
This commit is contained in:
parent
2be2c1acc5
commit
429d7a27e0
|
@ -3572,21 +3572,29 @@ BOOL WINAPI PageSetupDlgW(LPPAGESETUPDLGW setupdlg) {
|
||||||
*
|
*
|
||||||
* See PrintDlgExW.
|
* See PrintDlgExW.
|
||||||
*
|
*
|
||||||
* FIXME
|
* BUGS
|
||||||
* Stub
|
* Only a Stub
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
HRESULT WINAPI PrintDlgExA(LPPRINTDLGEXA lpPrintDlgExA)
|
HRESULT WINAPI PrintDlgExA(LPPRINTDLGEXA lppd)
|
||||||
{
|
{
|
||||||
FIXME("stub\n");
|
|
||||||
|
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;
|
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)
|
||||||
* 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 lpPrintDlgExW)
|
HRESULT WINAPI PrintDlgExW(LPPRINTDLGEXW lppd)
|
||||||
{
|
{
|
||||||
FIXME("stub\n");
|
|
||||||
|
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;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue