Changeset 847 for trunk/dll/getnames.c
- Timestamp:
- Sep 29, 2007, 8:45:16 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/getnames.c
r841 r847 210 210 { 211 211 FILEDLG fdlg; 212 FILESTATUS3 Lfsa;212 FILESTATUS3 fsa; 213 213 CHAR drive[3], *pdrive = drive, *p; 214 214 APIRET rc; … … 278 278 return FALSE; 279 279 MakeFullName(filename); 280 if (!DosQueryPathInfo(filename, FIL_STANDARD L, &fsa, sizeof(fsa))) {280 if (!DosQueryPathInfo(filename, FIL_STANDARD, &fsa, sizeof(fsa))) { 281 281 if (fsa.attrFile & FILE_DIRECTORY) { 282 282 /* device or directory */ … … 316 316 { 317 317 FILEDLG fdlg; 318 FILESTATUS3 Lfsa;318 FILESTATUS3 fsa; 319 319 CHAR drive[3], *pdrive = drive, *p; 320 320 static CHAR lastfilename[CCHMAXPATH] = ""; … … 369 369 return FALSE; 370 370 MakeFullName(filename); 371 if (!DosQueryPathInfo(filename, FIL_STANDARD L, &fsa, sizeof(fsa))) {371 if (!DosQueryPathInfo(filename, FIL_STANDARD, &fsa, sizeof(fsa))) { 372 372 if (fsa.attrFile & FILE_DIRECTORY) { /* device or directory */ 373 373 saymsg(MB_CANCEL | MB_ICONEXCLAMATION, … … 375 375 return FALSE; 376 376 } 377 else if (overwrite && fsa.cbFile != 0 L) {377 else if (overwrite && fsa.cbFile != 0) { 378 378 if (saymsg(MB_YESNO, 379 379 hwnd,
Note:
See TracChangeset
for help on using the changeset viewer.