Lines Matching refs:ofn
269 OPENFILENAMEA ofn; in WndProc() local
274 ofn.lStructSize = sizeof (OPENFILENAMEA); in WndProc()
275 ofn.hwndOwner = hwnd; in WndProc()
276 ofn.hInstance = NULL; in WndProc()
277 ofn.lpstrFilter = szFilter; in WndProc()
278 ofn.lpstrCustomFilter = NULL; in WndProc()
279 ofn.nMaxCustFilter = 0; in WndProc()
280 ofn.nFilterIndex = 0; in WndProc()
281 ofn.lpstrFile = szFileName; in WndProc()
282 ofn.nMaxFile = MAX_PATH; in WndProc()
283 ofn.lpstrFileTitle = szTitleName; in WndProc()
284 ofn.nMaxFileTitle = MAX_PATH; in WndProc()
285 ofn.lpstrInitialDir = NULL; in WndProc()
286 ofn.lpstrTitle = NULL; in WndProc()
287 ofn.Flags = OFN_HIDEREADONLY | OFN_PATHMUSTEXIST; in WndProc()
288 ofn.nFileOffset = 0; in WndProc()
289 ofn.nFileExtension = 0; in WndProc()
290 ofn.lpstrDefExt = "txt"; in WndProc()
291 ofn.lCustData = 0L; in WndProc()
292 ofn.lpfnHook = NULL; in WndProc()
293 ofn.lpTemplateName = NULL; in WndProc()
297 if (GetOpenFileNameA(&ofn)) { in WndProc()