Commit c18af414 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

comctl32: Implement PSM_GETRESULT.

parent 6d0b86a9
...@@ -32,7 +32,6 @@ ...@@ -32,7 +32,6 @@
* - Wizard 97 header resizing * - Wizard 97 header resizing
* - Enforcing of minimal wizard size * - Enforcing of minimal wizard size
* - Messages: * - Messages:
* o PSM_GETRESULT
* o PSM_INSERTPAGE * o PSM_INSERTPAGE
* o PSM_RECALCPAGESIZES * o PSM_RECALCPAGESIZES
* o PSM_SETHEADERSUBTITLE * o PSM_SETHEADERSUBTITLE
...@@ -2641,8 +2640,9 @@ static LRESULT PROPSHEET_IndexToId(HWND hwndDlg, int iPageIndex) ...@@ -2641,8 +2640,9 @@ static LRESULT PROPSHEET_IndexToId(HWND hwndDlg, int iPageIndex)
*/ */
static LRESULT PROPSHEET_GetResult(HWND hwndDlg) static LRESULT PROPSHEET_GetResult(HWND hwndDlg)
{ {
FIXME("(%p): stub\n", hwndDlg); PropSheetInfo * psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
return -1; PropSheetInfoStr);
return psInfo->result;
} }
/****************************************************************************** /******************************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment