Changeset 1326 for trunk/dll/filldir.c
- Timestamp:
- Dec 9, 2008, 3:18:36 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/filldir.c ¶
r1320 r1326 122 122 HWND hwndDrivesList; 123 123 BOOL RamDrive; 124 BOOL FirstDrive;125 124 } 126 125 STUBBYSCAN; … … 219 218 MPFROM2SHORT(LIT_SORTASCENDING, 0), 220 219 MPFROMP(StubbyScan->pci->pszFileName)); 221 220 } 222 221 StubbyScanCount--; 223 if (StubbyScan->FirstDrive) { 224 priority_critical(); 225 while (StubbyScanCount != 0) 226 DosSleep(50); 227 DosPostEventSem(DriveScanStart); 228 } 222 if (StubbyScanCount == 0) 223 fInitialDriveScan = FALSE; 229 224 WinDestroyMsgQueue(hmq); 230 225 } … … 359 354 CHAR *p; 360 355 HPOINTER hptr; 356 ULONG flags; 361 357 362 358 pci->hwndCnr = hwndCnr; … … 395 391 memcpy(p, pffb->achName, pffb->cchName + 1); 396 392 } 397 393 flags = driveflags[toupper(*pci->pszFileName) - 'A']; 398 394 // load the object's Subject, if required 399 pci->pszSubject = NullStr;395 // pci->pszSubject = NullStr; dubplicate see below 12-05-08 GKY 400 396 if (pffb->cbList > 4L && 401 397 dcd && fLoadSubject && 402 398 (isalpha(*pci->pszFileName) && 403 !( driveflags[toupper(*pci->pszFileName) - 'A']& DRIVE_NOLOADSUBJS)))399 !(flags & DRIVE_NOLOADSUBJS))) 404 400 { 405 401 APIRET rc; … … 447 443 pffb->cbList > 4L && 448 444 isalpha(*pci->pszFileName) && 449 ~ driveflags[toupper(*pci->pszFileName) - 'A']& DRIVE_NOLONGNAMES &&450 ~ driveflags[toupper(*pci->pszFileName) - 'A']& DRIVE_NOLOADLONGS)445 ~flags & DRIVE_NOLONGNAMES && 446 ~flags & DRIVE_NOLOADLONGS) 451 447 { 452 448 APIRET rc; … … 508 504 // is directory 509 505 if (fNoIconsDirs || 510 ( driveflags[toupper(*pci->pszFileName) - 'A']& DRIVE_NOLOADICONS) ||506 (flags & DRIVE_NOLOADICONS) || 511 507 !isalpha(*pci->pszFileName)) { 512 508 hptr = (HPOINTER) 0; … … 518 514 // is file 519 515 if (fNoIconsFiles || 520 ( driveflags[toupper(*pci->pszFileName) - 'A']& DRIVE_NOLOADICONS) ||516 (flags & DRIVE_NOLOADICONS) || 521 517 !isalpha(*pci->pszFileName)) { 522 518 hptr = (HPOINTER) 0; … … 531 527 if (!hptr) { 532 528 hptr = pffb->attrFile & FILE_DIRECTORY ? 533 hptrDir : pffb->attrFile & FILE_SYSTEM ? 534 hptrSystem : 535 pffb->attrFile & FILE_HIDDEN ? 536 hptrHidden : 537 pffb->attrFile & FILE_READONLY ? 538 hptrReadonly : hptrFile; 529 hptrDir : pffb->attrFile & FILE_SYSTEM ? 530 hptrSystem : pffb->attrFile & FILE_HIDDEN ? 531 hptrHidden : pffb->attrFile & FILE_READONLY ? 532 hptrReadonly : hptrFile; 539 533 } 540 534 … … 638 632 HPOINTER hptr; 639 633 CHAR *p; 634 ULONG flags; 640 635 641 636 // fill in a container record from a FILESTATUS4L structure … … 644 639 pci->pszFileName = xstrdup(pszFileName, pszSrcFile, __LINE__); 645 640 //strcpy(pci->pszFileName, pszFileName); 646 641 flags = driveflags[toupper(*pci->pszFileName) - 'A']; 647 642 // load the object's Subject, if required 648 pci->pszSubject = NullStr;643 //pci->pszSubject = NullStr; 649 644 if (pfsa4->cbList > 4 && 650 645 dcd && 651 646 fLoadSubject && 652 647 (!isalpha(*pci->pszFileName) || 653 !( driveflags[toupper(*pci->pszFileName) - 'A']& DRIVE_NOLOADSUBJS)))648 !(flags & DRIVE_NOLOADSUBJS))) 654 649 { 655 650 APIRET rc; … … 696 691 pfsa4->cbList > 4L && 697 692 isalpha(*pci->pszFileName) && 698 ~ driveflags[toupper(*pci->pszFileName) - 'A']& DRIVE_NOLONGNAMES &&699 ~ driveflags[toupper(*pci->pszFileName) - 'A']& DRIVE_NOLOADLONGS)693 ~flags & DRIVE_NOLONGNAMES && 694 ~flags & DRIVE_NOLOADLONGS) 700 695 { 701 696 APIRET rc; … … 746 741 if (pfsa4->attrFile & FILE_DIRECTORY) { 747 742 if (fNoIconsDirs || 748 ( driveflags[toupper(*pci->pszFileName) - 'A']& DRIVE_NOLOADICONS) ||743 (flags & DRIVE_NOLOADICONS) || 749 744 !isalpha(*pci->pszFileName)) { 750 745 hptr = (HPOINTER) 0; … … 755 750 else { 756 751 if (fNoIconsFiles || 757 ( driveflags[toupper(*pci->pszFileName) - 'A']& DRIVE_NOLOADICONS) ||752 (flags & DRIVE_NOLOADICONS) || 758 753 !isalpha(*pci->pszFileName)) { 759 754 hptr = IDFile(pci->pszFileName); … … 1272 1267 CHAR s[80]; 1273 1268 ULONG flags = 0; 1274 ULONG size = sizeof(ULONG);1275 1269 1276 1270 *szDrive = (CHAR)x + 'A'; // Build path spec 1277 1271 1278 1272 sprintf(s, "%c.DriveFlags", toupper(*szDrive)); 1279 if (PrfQueryProfileData(fmprof, appname, s, &flags, &size) && 1280 size == sizeof(ULONG)) { 1273 if (PrfQueryProfileData(fmprof, appname, s, &flags, &sizeUlong)) { 1281 1274 driveflags[toupper(*szDrive) - 'A'] |= flags; 1282 1275 } … … 1562 1555 HWND hwndDrivesList = WinWindowFromID(WinQueryWindow(hwndParent, QW_PARENT), 1563 1556 MAIN_DRIVELIST); 1564 BOOL FirstDrive = TRUE;1565 1557 1566 1558 pci = (PCNRITEM) WinSendMsg(hwndCnr, … … 1577 1569 StubbyScan->hwndDrivesList = hwndDrivesList; 1578 1570 StubbyScan->RamDrive = FALSE; 1579 StubbyScan->FirstDrive = FALSE;1580 1571 pciNext = (PCNRITEM) WinSendMsg(hwndCnr, 1581 1572 CM_QUERYRECORD, … … 1588 1579 if (~flags & DRIVE_INVALID && 1589 1580 ~flags & DRIVE_NOPRESCAN && 1590 (!fNoRemovableScan || ~flags & DRIVE_REMOVABLE) )1581 (!fNoRemovableScan || ~flags & DRIVE_REMOVABLE) && !fDrivetoSkip[drvNum]) 1591 1582 { 1592 1583 if (DRIVE_RAMDISK) 1593 1584 StubbyScan->RamDrive = TRUE; 1594 if (FirstDrive)1595 StubbyScan->FirstDrive = TRUE;1596 1585 rc = _beginthread(StubbyScanThread, NULL, 65536, StubbyScan); 1597 1586 if (rc == -1) 1598 1587 Runtime_Error(pszSrcFile, __LINE__, 1599 1588 GetPString(IDS_COULDNTSTARTTHREADTEXT)); 1600 else1601 FirstDrive = FALSE;1602 1589 } // if drive for scanning 1603 1590 else … … 1616 1603 MPFROM2SHORT(LIT_SORTASCENDING, 0), 1617 1604 MPFROMP(pci->pszFileName)); 1618 } 1605 } 1606 fDrivetoSkip[drvNum] = FALSE; 1619 1607 } 1620 1608 pci = pciNext; 1621 1609 } // while 1622 StubbyScanCount --; 1610 StubbyScanCount--; 1611 if (StubbyScanCount == 0) 1612 fInitialDriveScan = FALSE; 1623 1613 } 1624 1614 if (hwndParent)
Note:
See TracChangeset
for help on using the changeset viewer.