Changeset 557


Ignore:
Timestamp:
Mar 9, 2007, 7:38:41 PM (18 years ago)
Author:
Gregg Young
Message:

Changes for 3.05 beta mostly drive flag/tree related

Location:
trunk/dll
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/defview.c

    r551 r557  
    7171                         0L,
    7272                         &mmFormatInfo,
    73                          &fccStorageSystem, 0L, MMIO_FORCE_IDENTIFY_FF);
     73                         &fccStorageSystem, 0L, MMIO_FORCE_IDENTIFY_SS | MMIO_FORCE_IDENTIFY_FF);
    7474  /* free module handle */
    7575  DosFreeModule(MMIOModHandle);
  • TabularUnified trunk/dll/filldir.c

    r555 r557  
    2828  17 Feb 07 GKY Additional archive and image file tyoes identifed by extension
    2929  17 Feb 07 GKY Add more drive types
     30  09 Mar 07 GKY Use SelectDriveIcon
    3031
    3132***********************************************************************/
     
    10211022                                  FSIL_VOLSER, &volser, sizeof(volser))) {
    10221023                driveserial[x] = volser.serial;
    1023               }
    1024             }
     1024              }
     1025            }
    10251026            else
    10261027              driveflags[x] |= DRIVE_INVALID;
     
    11091110              strcpy(pci->szDispAttr, "----D-");
    11101111              pci->pszDispAttr = pci->szDispAttr;
    1111             }
    1112             *pci->szFileName = toupper(*pci->szFileName);
    1113             if (driveflags[x] & DRIVE_CDROM)
    1114               pci->rc.hptrIcon = hptrCDROM;
    1115             else
    1116               pci->rc.hptrIcon = (driveflags[x] & DRIVE_REMOVABLE) ?
    1117                 hptrRemovable :
    1118                                   (driveflags[x] & DRIVE_VIRTUAL) ?
    1119                                   hptrVirtual :
    1120                 (driveflags[x] & DRIVE_REMOTE) ?
    1121                 hptrRemote :
    1122                                   (driveflags[x] & DRIVE_RAMDISK) ?
    1123                                   hptrRamdisk :
    1124                                   (driveflags[x] & DRIVE_ZIPSTREAM) ?
    1125                                   hptrZipstrm : hptrDrive;
     1112            }
     1113            SelectDriveIcon(pci);
    11261114          }
    11271115          else {
  • TabularUnified trunk/dll/fm3dll.h

    r555 r557  
    3737  17 Jan 07 SHL Resize extractdir
    3838  17 Feb 07 GKY Add more file system types
    39   17 Feb 07 GKY Add FindDriveIcon to streamline update.c
     39  17 Feb 07 GKY Add SelectDriveIcon to streamline update.c
    4040
    4141***********************************************************************/
     
    10921092
    10931093/* update.c */
    1094 HPOINTER FindDriveIcon(PCNRITEM pci);
     1094HPOINTER SelectDriveIcon(PCNRITEM pci);
    10951095PCNRITEM UpdateCnrRecord(HWND hwndCnr, CHAR * filename, BOOL partial,
    10961096                         DIRCNRDATA * dcd);
  • TabularUnified trunk/dll/mainwnd.c

    r552 r557  
    2525  17 Aug 06 SHL Complain nicer if state name does not exist
    2626  18 Feb 07 GKY More drive type and icon support
     27  08 Mar 07 SHL SaveDirCnrState: do not save state of NOPRESCAN volumes
    2728
    2829***********************************************************************/
     
    7576
    7677static BOOL CloseDirCnrChildren(HWND hwndClient);
    77 static BOOL RestoreDirCnrState(HWND hwndClient, CHAR * name, BOOL noview);
     78static BOOL RestoreDirCnrState(HWND hwndClient, PSZ pszStateName, BOOL noview);
    7879
    7980static MRESULT EXPENTRY MainObjectWndProc(HWND hwnd, ULONG msg, MPARAM mp1,
     
    26262627}
    26272628
    2628 BOOL SaveDirCnrState(HWND hwndClient, CHAR * name)
     2629/** Save directory container state
     2630 * @param hwndClient Client window handle
     2631 * @param pszStateName State name to save, NULL to save global state
     2632 * @returns TRUE if one or more directory container windows were saved
     2633 * @seealso RestoreDirCnrState
     2634 */
     2635
     2636BOOL SaveDirCnrState(HWND hwndClient, PSZ pszStateName)
    26292637{
    2630   /* returns TRUE if any directory container windows existed */
    2631 
    26322638  HENUM henum;
    26332639  HWND hwndChild, hwndDir, hwndC;
     
    26492655          WinSendMsg(hwndC, UM_CONTAINERDIR, MPFROMP(directory), MPVOID);
    26502656          if (*directory) {
    2651             sprintf(s, "%s%sDirCnrPos.%lu", (name) ? name : NullStr,
    2652                     (name) ? "." : NullStr, numsaves);
     2657           if (driveflags[toupper(*directory) - 'A'] & DRIVE_NOPRESCAN)
     2658             continue;
     2659            sprintf(s, "%s%sDirCnrPos.%lu", pszStateName ? pszStateName : NullStr,
     2660                    pszStateName ? "." : NullStr, numsaves);
    26532661            PrfWriteProfileData(fmprof, FM3Str, s, (PVOID) & swp,
    26542662                                sizeof(SWP));
     
    26562664              WinQueryWindowPtr(WinWindowFromID(hwndC, DIR_CNR), QWL_USER);
    26572665            if (dcd) {
    2658               sprintf(s, "%s%sDirCnrSort.%lu", (name) ? name : NullStr,
    2659                       (name) ? "." : NullStr, numsaves);
     2666              sprintf(s, "%s%sDirCnrSort.%lu", pszStateName ? pszStateName : NullStr,
     2667                      pszStateName ? "." : NullStr, numsaves);
    26602668              PrfWriteProfileData(fmprof, FM3Str, s, (PVOID) & dcd->sortFlags,
    26612669                                  sizeof(INT));
    2662               sprintf(s, "%s%sDirCnrFilter.%lu", (name) ? name : NullStr,
    2663                       (name) ? "." : NullStr, numsaves);
     2670              sprintf(s, "%s%sDirCnrFilter.%lu", pszStateName ? pszStateName : NullStr,
     2671                      pszStateName ? "." : NullStr, numsaves);
    26642672              PrfWriteProfileData(fmprof, FM3Str, s, (PVOID) & dcd->mask,
    26652673                                  sizeof(MASK));
    2666               sprintf(s, "%s%sDirCnrView.%lu", (name) ? name : NullStr,
    2667                       (name) ? "." : NullStr, numsaves);
     2674              sprintf(s, "%s%sDirCnrView.%lu", pszStateName ? pszStateName : NullStr,
     2675                      pszStateName ? "." : NullStr, numsaves);
    26682676              flWindowAttr = dcd->flWindowAttr;
    26692677              if (!fLeaveTree && (flWindowAttr & CV_TREE)) {
     
    26852693                                  sizeof(ULONG));
    26862694            }
    2687             sprintf(s, "%s%sDirCnrDir.%lu", (name) ? name : NullStr,
    2688                     (name) ? "." : NullStr, numsaves++);
     2695            sprintf(s, "%s%sDirCnrDir.%lu", pszStateName ? pszStateName : NullStr,
     2696                    pszStateName ? "." : NullStr, numsaves++);
    26892697            PrfWriteProfileString(fmprof, FM3Str, s, directory);
    26902698            ret = TRUE;
     
    26932701      }
    26942702    }
    2695   }
     2703  } // while
    26962704  WinEndEnumWindows(henum);
    26972705  if (ret) {
    26982706    if (WinQueryWindowPos(hwndTree, &swp)) {
    2699       sprintf(s, "%s%sLastTreePos", (name) ? name : NullStr,
    2700               (name) ? "." : NullStr);
     2707      sprintf(s, "%s%sLastTreePos", pszStateName ? pszStateName : NullStr,
     2708              pszStateName ? "." : NullStr);
    27012709      PrfWriteProfileData(fmprof, FM3Str, s, (PVOID) & swp, sizeof(SWP));
    27022710    }
    2703     sprintf(s, "%s%sNumDirsLastTime", (name) ? name : NullStr,
    2704             (name) ? "." : NullStr);
     2711    sprintf(s, "%s%sNumDirsLastTime", pszStateName ? pszStateName : NullStr,
     2712            pszStateName ? "." : NullStr);
    27052713    PrfWriteProfileData(fmprof, FM3Str, s, (PVOID) & numsaves, sizeof(ULONG));
    27062714    WinQueryWindowPos(WinQueryWindow(hwndClient, QW_PARENT), &swp);
    2707     sprintf(s, "%s%sMySizeLastTime", (name) ? name : NullStr,
    2708             (name) ? "." : NullStr);
     2715    sprintf(s, "%s%sMySizeLastTime", pszStateName ? pszStateName : NullStr,
     2716            pszStateName ? "." : NullStr);
    27092717    PrfWriteProfileData(fmprof, FM3Str, s, (PVOID) & swp, sizeof(SWP));
    27102718  }
     
    27462754}
    27472755
    2748 static BOOL RestoreDirCnrState(HWND hwndClient, CHAR * name, BOOL noview)
     2756/** Restore directory container state
     2757 * @param hwndClient Client window handle
     2758 * @param pszStateName State name to restore, NULL to restore global state
     2759 * @returns TRUE if one or more directory containers were opened
     2760 * @seealso SaveDirCnrState
     2761 */
     2762
     2763static BOOL RestoreDirCnrState(HWND hwndClient, PSZ pszStateName, BOOL noview)
    27492764{
    2750   /* returns TRUE if a directory container was opened */
    2751 
    27522765  CHAR s[120], tdir[CCHMAXPATH];
    27532766  HWND hwndDir, hwndC;
     
    27612774  sprintf(s,
    27622775          "%s%sMySizeLastTime",
    2763           (name) ? name : NullStr, (name) ? "." : NullStr);
     2776          pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr);
    27642777  if (!PrfQueryProfileData(fmprof,
    27652778                           FM3Str,
     
    27692782      size != sizeof(SWP) || !swp.cx || !swp.cy)
    27702783    WinQueryWindowPos(WinQueryWindow(hwndClient, QW_PARENT), &swpO);
    2771   if (!name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))
     2784  if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT)))
    27722785    PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L);
    27732786  WinQueryWindowPos(WinQueryWindow(hwndClient, QW_PARENT), &swpN);
     
    27792792  sprintf(s,
    27802793          "%s%sLastTreePos",
    2781           (name) ? (name) : NullStr, (name) ? "." : NullStr);
     2794          pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr);
    27822795  if (PrfQueryProfileData(fmprof, FM3Str, s, (PVOID) & swp, &size)) {
    2783     if (!name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))
     2796    if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT)))
    27842797      PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L);
    27852798    swp.hwnd = hwndTree;
     
    28122825  sprintf(s,
    28132826          "%s%sNumDirsLastTime",
    2814           (name) ? name : NullStr, (name) ? "." : NullStr);
     2827          pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr);
    28152828  if (PrfQueryProfileData(fmprof,
    28162829                          FM3Str, s, (PVOID) & numsaves, &size) && numsaves) {
    2817     if (!name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))
     2830    if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT)))
    28182831      PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L);
    28192832    for (x = 0; x < numsaves; x++) {
    28202833      sprintf(s,
    28212834              "%s%sDirCnrPos.%lu",
    2822               (name) ? name : NullStr, (name) ? "." : NullStr, x);
     2835              pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr, x);
    28232836      size = sizeof(SWP);
    28242837      if (PrfQueryProfileData(fmprof, FM3Str, s, (PVOID) & swp, &size)) {
    2825         if (!name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))
     2838        if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT)))
    28262839          PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L);
    28272840        sprintf(s,
    28282841                "%s%sDirCnrDir.%lu",
    2829                 (name) ? name : NullStr, (name) ? "." : NullStr, x);
     2842                pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr, x);
    28302843        size = sizeof(tdir);
    28312844        if (PrfQueryProfileData(fmprof, FM3Str, s, (PVOID) tdir, &size)) {
    2832           if (!name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))
     2845          if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT)))
    28332846            PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L);
    28342847          hwndDir = (HWND) WinSendMsg(hwndClient,
     
    28442857                sprintf(s,
    28452858                        "%s%sDirCnrSort.%lu",
    2846                         (name) ? name : NullStr, (name) ? "." : NullStr, x);
     2859                        pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr, x);
    28472860                if (PrfQueryProfileData(fmprof,
    28482861                                        FM3Str,
     
    28532866                    dcd->sortFlags = SORT_PATHNAME;
    28542867                }
    2855                 if (!name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))
     2868                if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT)))
    28562869                  PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L);
    28572870                size = sizeof(MASK);
    28582871                sprintf(s,
    28592872                        "%s%sDirCnrFilter.%lu",
    2860                         (name) ? name : NullStr, (name) ? "." : NullStr, x);
     2873                        pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr, x);
    28612874                if (PrfQueryProfileData(fmprof,
    28622875                                        FM3Str,
     
    28682881                }
    28692882                *(dcd->mask.prompt) = 0;
    2870                 if (!name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))
     2883                if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT)))
    28712884                  PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L);
    28722885                size = sizeof(ULONG);
    28732886                sprintf(s,
    28742887                        "%s%sDirCnrView.%lu",
    2875                         (name) ? name : NullStr, (name) ? "." : NullStr, x);
     2888                        pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr, x);
    28762889                if (!noview) {
    28772890                  if (PrfQueryProfileData(fmprof,
     
    28972910                  }
    28982911                }
    2899                 if (!name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))
     2912                if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT)))
    29002913                  PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L);
    29012914              }
     
    29292942        }
    29302943      }
    2931     }
     2944    } // for
    29322945  }
    29332946  return ret;
  • TabularUnified trunk/dll/treecnr.c

    r555 r557  
    2323  29 Dec 06 GKY Enabled edit of drive flags on "not ready" drives
    2424  18 Feb 07 GKY More drive type and icon support
     25  08 Mar 07 SHL Ensure drive icon updates after drive flags change
     26  09 Mar 07 GKY Use SelectDriveIcon
    2527
    2628***********************************************************************/
     
    18071809                  strcmp(FileSystem, HPFS386)) {
    18081810                driveflags[x] |= DRIVE_NOLONGNAMES;
    1809               }
    1810               if (driveflags[x] & DRIVE_CDROM)
    1811                 pciP->rc.hptrIcon = hptrCDROM;
    1812 
    1813               else
    1814                 pciP->rc.hptrIcon = (driveflags[x] & DRIVE_REMOVABLE) ?
    1815                   hptrRemovable :
    1816                       (driveflags[x] & DRIVE_REMOTE) ?
    1817                       hptrRemote :
    1818                       (driveflags[x] & DRIVE_VIRTUAL) ?
    1819                       hptrVirtual :
    1820                       (driveflags[x] & DRIVE_RAMDISK) ?
    1821                       hptrRamdisk :
    1822                       (driveflags[x] & DRIVE_ZIPSTREAM) ?
    1823                       hptrZipstrm : hptrDrive;
     1811              }
     1812              SelectDriveIcon(pciP);
    18241813              WinSendMsg(hwnd,
    18251814                         CM_INVALIDATERECORD,
     
    25492538      case IDM_UPDATE:
    25502539        {
    2551           PCNRITEM pci = NULL;
    2552 
    2553           pci = (PCNRITEM) CurrentRecord(hwnd);
    2554           if (pci && (INT) pci != -1) {
     2540          PCNRITEM pci = (PCNRITEM)CurrentRecord(hwnd);
     2541          if (pci && (INT)pci != -1) {
     2542            UINT driveflag = driveflags[toupper(*pci->szFileName) - 'A'];
    25552543            if (pci->attrFile & FILE_DIRECTORY) {
    25562544              if (pci->flags & RECFLAGS_UNDERENV)
    25572545                break;
    25582546              UnFlesh(hwnd, pci);
    2559               if (driveflags[toupper(*pci->szFileName) - 'A'] &
    2560                   (DRIVE_INVALID | DRIVE_NOPRESCAN)) {
     2547              // Check if drive type might need update
     2548              if ((driveflag & (DRIVE_INVALID | DRIVE_NOPRESCAN)) ||
     2549                  (~driveflag & DRIVE_NOPRESCAN && pci->rc.hptrIcon == hptrDunno))
     2550              {
    25612551                driveflags[toupper(*pci->szFileName) - 'A'] &=
    25622552                  (DRIVE_IGNORE | DRIVE_NOPRESCAN | DRIVE_NOLOADICONS |
    25632553                   DRIVE_NOLOADSUBJS | DRIVE_NOLOADLONGS | DRIVE_NOSTATS);
    25642554                DriveFlagsOne(toupper(*pci->szFileName) - 'A');
    2565                 if (driveflags[toupper(*pci->szFileName) - 'A'] &
    2566                     DRIVE_INVALID)
     2555                driveflag = driveflags[toupper(*pci->szFileName) - 'A'];
     2556                if (driveflag & DRIVE_INVALID)
    25672557                  pci->rc.hptrIcon = hptrDunno;
    25682558                else {
    2569                   if (driveflags[toupper(*pci->szFileName) - 'A'] &
    2570                       DRIVE_CDROM)
    2571                     pci->rc.hptrIcon = hptrCDROM;
    2572                   else
    2573                     pci->rc.hptrIcon =
    2574                       (driveflags[toupper(*pci->szFileName) - 'A'] &
    2575                        DRIVE_REMOVABLE) ? hptrRemovable
    2576                       : (driveflags[toupper(*pci->szFileName) - 'A'] &
    2577                          DRIVE_REMOTE) ? hptrRemote
    2578                       : (driveflags[toupper(*pci->szFileName) - 'A'] &
    2579                          DRIVE_VIRTUAL) ? hptrVirtual
    2580                       : (driveflags[toupper(*pci->szFileName) - 'A'] &
    2581                          DRIVE_RAMDISK) ? hptrRamdisk
    2582                       : (driveflags[toupper(*pci->szFileName) - 'A'] &
    2583                          DRIVE_ZIPSTREAM) ? hptrZipstrm : hptrDrive;
     2559                  SelectDriveIcon(pci);
    25842560                }
    25852561                WinSendMsg(hwnd,
     
    25902566                  PostMsg(hwndMain, UM_BUILDDRIVEBAR, MPVOID, MPVOID);
    25912567              }
    2592               if (!
    2593                   (driveflags[toupper(*pci->szFileName) - 'A'] &
    2594                    DRIVE_INVALID))
     2568              if (~driveflag & DRIVE_INVALID)
    25952569                Flesh(hwnd, pci);
    2596             }
    2597             else {
    2598 
    25992570            }
    26002571          }
  • TabularUnified trunk/dll/update.c

    r552 r557  
    1515  06 Jun 05 SHL Drop unused code
    1616  22 Jul 06 SHL Use wrappers
    17   Add FindDriveIcon
     17  20 Feb 07 GKY Add SelectDriveIcon()
     18  09 Mar 07 GKY Cleanup SelectDriveIcon using "driveflag =" from Steven
    1819
    1920***********************************************************************/
     
    3738#pragma alloc_text(UPDATECNR,UpdateCnrRecord,UpdateCnrList)
    3839
    39 HPOINTER FindDriveIcon(PCNRITEM pci)
    40                   {
    41                       *pci->szFileName = toupper(*pci->szFileName);
    42                       if (isalpha(*pci->szFileName) &&
    43                           toupper(*pci->szFileName) > 'B') {
    44                         if (driveflags[toupper(*pci->szFileName) - 'A'] &
    45                             DRIVE_CDROM)
    46                           pci->rc.hptrIcon = hptrCDROM;
    47                         else
    48                           pci->rc.hptrIcon =
    49                             (driveflags[toupper(*pci->szFileName) - 'A'] &
    50                               DRIVE_REMOVABLE) ? hptrRemovable
    51                             :(driveflags[toupper(*pci->szFileName) - 'A'] &
    52                               DRIVE_VIRTUAL) ? hptrVirtual
    53                             :(driveflags[toupper(*pci->szFileName) - 'A'] &
    54                               DRIVE_REMOTE) ? hptrRemote
    55                             :(driveflags[toupper(*pci->szFileName) - 'A'] &
    56                               DRIVE_RAMDISK) ? hptrRamdisk
    57                             :(driveflags[toupper(*pci->szFileName) - 'A'] &
    58                                DRIVE_ZIPSTREAM) ? hptrZipstrm : hptrDrive;
    59                       }
    60                       else
    61                           pci->rc.hptrIcon = hptrFloppy;
    62                       return pci->rc.hptrIcon;
    63                   }
     40HPOINTER SelectDriveIcon(PCNRITEM pci)
     41{
     42    UINT driveflag = driveflags[toupper(*pci->szFileName) - 'A'];
     43    *pci->szFileName = toupper(*pci->szFileName);
     44              if (isalpha(*pci->szFileName) &&
     45                  toupper(*pci->szFileName) > 'B') {
     46                if (driveflag & DRIVE_CDROM)
     47                  pci->rc.hptrIcon = hptrCDROM;
     48                else
     49                  pci->rc.hptrIcon =
     50                     (driveflag & DRIVE_REMOVABLE) ? hptrRemovable
     51                    :(driveflag & DRIVE_VIRTUAL) ? hptrVirtual
     52                    :(driveflag & DRIVE_REMOTE) ? hptrRemote
     53                    :(driveflag & DRIVE_RAMDISK) ? hptrRamdisk
     54                    :(driveflag & DRIVE_ZIPSTREAM) ? hptrZipstrm : hptrDrive;
     55              }
     56              else
     57                pci->rc.hptrIcon = hptrFloppy;
     58                return pci->rc.hptrIcon;
     59}
    6460PCNRITEM UpdateCnrRecord(HWND hwndCnr, CHAR * filename, BOOL partial,
    6561                         DIRCNRDATA * dcd)
     
    149145        FillInRecordFromFFB(hwndCnr, pci, filename, &ffb, partial, dcd);
    150146        if (strlen(pci->szFileName) < 4)
    151         FindDriveIcon(pci);
     147        SelectDriveIcon(pci);
    152148        oldemphasis = pci->rc.flRecordAttr & (CRA_SELECTED | CRA_CURSORED);
    153149        if (oldemphasis)
     
    185181                                              filename, &ffb, partial, dcd);
    186182          if (strlen(pci->szFileName) < 4)
    187           FindDriveIcon(pci);
     183          SelectDriveIcon(pci);
    188184          memset(&ri, 0, sizeof(RECORDINSERT));
    189185          ri.cb = sizeof(RECORDINSERT);
     
    231227                                    pci, filename, &ffb, partial, dcd);
    232228                if (strlen(pci->szFileName) < 4)
    233                 FindDriveIcon(pci);
     229                SelectDriveIcon(pci);
    234230                memset(&ri, 0, sizeof(RECORDINSERT));
    235231                ri.cb = sizeof(RECORDINSERT);
     
    278274                                              filename, &ffb, partial, dcd);
    279275          if (strlen(pci->szFileName) < 4)
    280           FindDriveIcon(pci);
     276          SelectDriveIcon(pci);
    281277          memset(&ri, 0, sizeof(RECORDINSERT));
    282278          ri.cb = sizeof(RECORDINSERT);
     
    436432                                pci, filename[x], &ffb, partial, dcd);
    437433            if (IsRoot(pci->szFileName))
    438             FindDriveIcon(pci);
     434            SelectDriveIcon(pci);
    439435            WinSendMsg(hwndCnr,
    440436                       CM_SETRECORDEMPHASIS,
     
    460456                                                  &ffb, partial, dcd);
    461457              if (strlen(pci->szFileName) < 4)
    462               FindDriveIcon(pci);
     458              SelectDriveIcon(pci);
    463459              memset(&ri, 0, sizeof(RECORDINSERT));
    464460              ri.cb = sizeof(RECORDINSERT);
     
    514510                                                        &ffb, partial, dcd);
    515511                    if (strlen(pci->szFileName) < 4)
    516                     FindDriveIcon(pci);
     512                    SelectDriveIcon(pci);
    517513                    memset(&ri, 0, sizeof(RECORDINSERT));
    518514                    ri.cb = sizeof(RECORDINSERT);
     
    561557                                                    &ffb, partial, dcd);
    562558                if (strlen(pci->szFileName) < 4)
    563                 FindDriveIcon(pci);
     559                SelectDriveIcon(pci);
    564560                memset(&ri, 0, sizeof(RECORDINSERT));
    565561                ri.cb = sizeof(RECORDINSERT);
Note: See TracChangeset for help on using the changeset viewer.