Lines Matching refs:psp

201 	PROPSHEETPAGE psp;  in AddPages()  local
202 ZeroMemory(&psp, sizeof(PROPSHEETPAGEA)); in AddPages()
205 psp.dwSize = sizeof(PROPSHEETPAGE); in AddPages()
206 psp.dwFlags = PSP_DEFAULT | PSP_USETITLE | PSP_USECALLBACK; in AddPages()
207 psp.hInstance = GetModuleHandle(MODULE_NAME); in AddPages()
208 psp.lParam = reinterpret_cast<LPARAM>(this); in AddPages()
209 psp.pfnCallback = reinterpret_cast<LPFNPSPCALLBACK>(CPropertySheet::PropPageSummaryCallback); in AddPages()
217 psp.pszTemplate = MAKEINTRESOURCE(IDD_PROPPAGE_SUMMARY); in AddPages()
218 psp.pszTitle = proppage_header.c_str(); in AddPages()
219 psp.pfnDlgProc = reinterpret_cast<DLGPROC>(CPropertySheet::PropPageSummaryProc); in AddPages()
221 hPage = CreatePropertySheetPage(&psp); in AddPages()
238 psp.pszTemplate = MAKEINTRESOURCE(IDD_PROPPAGE_STATISTICS); in AddPages()
239 psp.pszTitle = proppage_header.c_str(); in AddPages()
240 psp.pfnDlgProc = reinterpret_cast<DLGPROC>(CPropertySheet::PropPageStatisticsProc); in AddPages()
242 hPage = CreatePropertySheetPage(&psp); in AddPages()
299 LPPROPSHEETPAGE psp = reinterpret_cast<LPPROPSHEETPAGE>(lParam); in PropPageSummaryProc() local
300 CPropertySheet* pImpl = reinterpret_cast<CPropertySheet*>(psp->lParam); in PropPageSummaryProc()
301 pImpl->InitPropPageSummary(hwnd, psp); in PropPageSummaryProc()
319 LPPROPSHEETPAGE psp = reinterpret_cast<LPPROPSHEETPAGE>(lParam); in PropPageStatisticsProc() local
320 CPropertySheet* pImpl = reinterpret_cast<CPropertySheet*>(psp->lParam); in PropPageStatisticsProc()
321 pImpl->InitPropPageStatistics(hwnd, psp); in PropPageStatisticsProc()