Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 4150 of file filedlg.c.
Referenced by GetOpenFileNameW(), and GetSaveFileNameW().
{ BOOL bRet = FALSE; PFD31_DATA lfs; if (!lpofn || !FD31_Init()) return FALSE; lfs = FD31_AllocPrivate((LPARAM) lpofn, dlgType, TRUE); if (lfs) { bRet = DialogBoxIndirectParamW( COMDLG32_hInstance, lfs->template, lpofn->hwndOwner, FD32_FileOpenDlgProc, (LPARAM)lfs); FD31_DestroyPrivate(lfs); } TRACE("file %s, file offset %d, ext offset %d\n", debugstr_w(lpofn->lpstrFile), lpofn->nFileOffset, lpofn->nFileExtension); return bRet; }