Changeset 557
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/defview.c ¶
r551 r557 71 71 0L, 72 72 &mmFormatInfo, 73 &fccStorageSystem, 0L, MMIO_FORCE_IDENTIFY_ FF);73 &fccStorageSystem, 0L, MMIO_FORCE_IDENTIFY_SS | MMIO_FORCE_IDENTIFY_FF); 74 74 /* free module handle */ 75 75 DosFreeModule(MMIOModHandle); -
TabularUnified trunk/dll/filldir.c ¶
r555 r557 28 28 17 Feb 07 GKY Additional archive and image file tyoes identifed by extension 29 29 17 Feb 07 GKY Add more drive types 30 09 Mar 07 GKY Use SelectDriveIcon 30 31 31 32 ***********************************************************************/ … … 1021 1022 FSIL_VOLSER, &volser, sizeof(volser))) { 1022 1023 driveserial[x] = volser.serial; 1023 1024 1024 } 1025 } 1025 1026 else 1026 1027 driveflags[x] |= DRIVE_INVALID; … … 1109 1110 strcpy(pci->szDispAttr, "----D-"); 1110 1111 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); 1126 1114 } 1127 1115 else { -
TabularUnified trunk/dll/fm3dll.h ¶
r555 r557 37 37 17 Jan 07 SHL Resize extractdir 38 38 17 Feb 07 GKY Add more file system types 39 17 Feb 07 GKY Add FindDriveIcon to streamline update.c39 17 Feb 07 GKY Add SelectDriveIcon to streamline update.c 40 40 41 41 ***********************************************************************/ … … 1092 1092 1093 1093 /* update.c */ 1094 HPOINTER FindDriveIcon(PCNRITEM pci);1094 HPOINTER SelectDriveIcon(PCNRITEM pci); 1095 1095 PCNRITEM UpdateCnrRecord(HWND hwndCnr, CHAR * filename, BOOL partial, 1096 1096 DIRCNRDATA * dcd); -
TabularUnified trunk/dll/mainwnd.c ¶
r552 r557 25 25 17 Aug 06 SHL Complain nicer if state name does not exist 26 26 18 Feb 07 GKY More drive type and icon support 27 08 Mar 07 SHL SaveDirCnrState: do not save state of NOPRESCAN volumes 27 28 28 29 ***********************************************************************/ … … 75 76 76 77 static BOOL CloseDirCnrChildren(HWND hwndClient); 77 static BOOL RestoreDirCnrState(HWND hwndClient, CHAR * name, BOOL noview);78 static BOOL RestoreDirCnrState(HWND hwndClient, PSZ pszStateName, BOOL noview); 78 79 79 80 static MRESULT EXPENTRY MainObjectWndProc(HWND hwnd, ULONG msg, MPARAM mp1, … … 2626 2627 } 2627 2628 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 2636 BOOL SaveDirCnrState(HWND hwndClient, PSZ pszStateName) 2629 2637 { 2630 /* returns TRUE if any directory container windows existed */2631 2632 2638 HENUM henum; 2633 2639 HWND hwndChild, hwndDir, hwndC; … … 2649 2655 WinSendMsg(hwndC, UM_CONTAINERDIR, MPFROMP(directory), MPVOID); 2650 2656 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); 2653 2661 PrfWriteProfileData(fmprof, FM3Str, s, (PVOID) & swp, 2654 2662 sizeof(SWP)); … … 2656 2664 WinQueryWindowPtr(WinWindowFromID(hwndC, DIR_CNR), QWL_USER); 2657 2665 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); 2660 2668 PrfWriteProfileData(fmprof, FM3Str, s, (PVOID) & dcd->sortFlags, 2661 2669 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); 2664 2672 PrfWriteProfileData(fmprof, FM3Str, s, (PVOID) & dcd->mask, 2665 2673 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); 2668 2676 flWindowAttr = dcd->flWindowAttr; 2669 2677 if (!fLeaveTree && (flWindowAttr & CV_TREE)) { … … 2685 2693 sizeof(ULONG)); 2686 2694 } 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++); 2689 2697 PrfWriteProfileString(fmprof, FM3Str, s, directory); 2690 2698 ret = TRUE; … … 2693 2701 } 2694 2702 } 2695 } 2703 } // while 2696 2704 WinEndEnumWindows(henum); 2697 2705 if (ret) { 2698 2706 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); 2701 2709 PrfWriteProfileData(fmprof, FM3Str, s, (PVOID) & swp, sizeof(SWP)); 2702 2710 } 2703 sprintf(s, "%s%sNumDirsLastTime", (name) ? name : NullStr,2704 (name)? "." : NullStr);2711 sprintf(s, "%s%sNumDirsLastTime", pszStateName ? pszStateName : NullStr, 2712 pszStateName ? "." : NullStr); 2705 2713 PrfWriteProfileData(fmprof, FM3Str, s, (PVOID) & numsaves, sizeof(ULONG)); 2706 2714 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); 2709 2717 PrfWriteProfileData(fmprof, FM3Str, s, (PVOID) & swp, sizeof(SWP)); 2710 2718 } … … 2746 2754 } 2747 2755 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 2763 static BOOL RestoreDirCnrState(HWND hwndClient, PSZ pszStateName, BOOL noview) 2749 2764 { 2750 /* returns TRUE if a directory container was opened */2751 2752 2765 CHAR s[120], tdir[CCHMAXPATH]; 2753 2766 HWND hwndDir, hwndC; … … 2761 2774 sprintf(s, 2762 2775 "%s%sMySizeLastTime", 2763 (name) ? name : NullStr, (name)? "." : NullStr);2776 pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr); 2764 2777 if (!PrfQueryProfileData(fmprof, 2765 2778 FM3Str, … … 2769 2782 size != sizeof(SWP) || !swp.cx || !swp.cy) 2770 2783 WinQueryWindowPos(WinQueryWindow(hwndClient, QW_PARENT), &swpO); 2771 if (! name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))2784 if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT))) 2772 2785 PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L); 2773 2786 WinQueryWindowPos(WinQueryWindow(hwndClient, QW_PARENT), &swpN); … … 2779 2792 sprintf(s, 2780 2793 "%s%sLastTreePos", 2781 (name) ? (name) : NullStr, (name)? "." : NullStr);2794 pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr); 2782 2795 if (PrfQueryProfileData(fmprof, FM3Str, s, (PVOID) & swp, &size)) { 2783 if (! name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))2796 if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT))) 2784 2797 PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L); 2785 2798 swp.hwnd = hwndTree; … … 2812 2825 sprintf(s, 2813 2826 "%s%sNumDirsLastTime", 2814 (name) ? name : NullStr, (name)? "." : NullStr);2827 pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr); 2815 2828 if (PrfQueryProfileData(fmprof, 2816 2829 FM3Str, s, (PVOID) & numsaves, &size) && numsaves) { 2817 if (! name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))2830 if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT))) 2818 2831 PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L); 2819 2832 for (x = 0; x < numsaves; x++) { 2820 2833 sprintf(s, 2821 2834 "%s%sDirCnrPos.%lu", 2822 (name) ? name : NullStr, (name)? "." : NullStr, x);2835 pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr, x); 2823 2836 size = sizeof(SWP); 2824 2837 if (PrfQueryProfileData(fmprof, FM3Str, s, (PVOID) & swp, &size)) { 2825 if (! name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))2838 if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT))) 2826 2839 PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L); 2827 2840 sprintf(s, 2828 2841 "%s%sDirCnrDir.%lu", 2829 (name) ? name : NullStr, (name)? "." : NullStr, x);2842 pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr, x); 2830 2843 size = sizeof(tdir); 2831 2844 if (PrfQueryProfileData(fmprof, FM3Str, s, (PVOID) tdir, &size)) { 2832 if (! name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))2845 if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT))) 2833 2846 PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L); 2834 2847 hwndDir = (HWND) WinSendMsg(hwndClient, … … 2844 2857 sprintf(s, 2845 2858 "%s%sDirCnrSort.%lu", 2846 (name) ? name : NullStr, (name)? "." : NullStr, x);2859 pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr, x); 2847 2860 if (PrfQueryProfileData(fmprof, 2848 2861 FM3Str, … … 2853 2866 dcd->sortFlags = SORT_PATHNAME; 2854 2867 } 2855 if (! name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))2868 if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT))) 2856 2869 PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L); 2857 2870 size = sizeof(MASK); 2858 2871 sprintf(s, 2859 2872 "%s%sDirCnrFilter.%lu", 2860 (name) ? name : NullStr, (name)? "." : NullStr, x);2873 pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr, x); 2861 2874 if (PrfQueryProfileData(fmprof, 2862 2875 FM3Str, … … 2868 2881 } 2869 2882 *(dcd->mask.prompt) = 0; 2870 if (! name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))2883 if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT))) 2871 2884 PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L); 2872 2885 size = sizeof(ULONG); 2873 2886 sprintf(s, 2874 2887 "%s%sDirCnrView.%lu", 2875 (name) ? name : NullStr, (name)? "." : NullStr, x);2888 pszStateName ? pszStateName : NullStr, pszStateName ? "." : NullStr, x); 2876 2889 if (!noview) { 2877 2890 if (PrfQueryProfileData(fmprof, … … 2897 2910 } 2898 2911 } 2899 if (! name || !strcmp(name, GetPString(IDS_FM2TEMPTEXT)))2912 if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT))) 2900 2913 PrfWriteProfileData(fmprof, FM3Str, s, NULL, 0L); 2901 2914 } … … 2929 2942 } 2930 2943 } 2931 } 2944 } // for 2932 2945 } 2933 2946 return ret; -
TabularUnified trunk/dll/treecnr.c ¶
r555 r557 23 23 29 Dec 06 GKY Enabled edit of drive flags on "not ready" drives 24 24 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 25 27 26 28 ***********************************************************************/ … … 1807 1809 strcmp(FileSystem, HPFS386)) { 1808 1810 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); 1824 1813 WinSendMsg(hwnd, 1825 1814 CM_INVALIDATERECORD, … … 2549 2538 case IDM_UPDATE: 2550 2539 { 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']; 2555 2543 if (pci->attrFile & FILE_DIRECTORY) { 2556 2544 if (pci->flags & RECFLAGS_UNDERENV) 2557 2545 break; 2558 2546 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 { 2561 2551 driveflags[toupper(*pci->szFileName) - 'A'] &= 2562 2552 (DRIVE_IGNORE | DRIVE_NOPRESCAN | DRIVE_NOLOADICONS | 2563 2553 DRIVE_NOLOADSUBJS | DRIVE_NOLOADLONGS | DRIVE_NOSTATS); 2564 2554 DriveFlagsOne(toupper(*pci->szFileName) - 'A'); 2565 if (driveflags[toupper(*pci->szFileName) - 'A'] &2566 2555 driveflag = driveflags[toupper(*pci->szFileName) - 'A']; 2556 if (driveflag & DRIVE_INVALID) 2567 2557 pci->rc.hptrIcon = hptrDunno; 2568 2558 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); 2584 2560 } 2585 2561 WinSendMsg(hwnd, … … 2590 2566 PostMsg(hwndMain, UM_BUILDDRIVEBAR, MPVOID, MPVOID); 2591 2567 } 2592 if (! 2593 (driveflags[toupper(*pci->szFileName) - 'A'] & 2594 DRIVE_INVALID)) 2568 if (~driveflag & DRIVE_INVALID) 2595 2569 Flesh(hwnd, pci); 2596 }2597 else {2598 2599 2570 } 2600 2571 } -
TabularUnified trunk/dll/update.c ¶
r552 r557 15 15 06 Jun 05 SHL Drop unused code 16 16 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 18 19 19 20 ***********************************************************************/ … … 37 38 #pragma alloc_text(UPDATECNR,UpdateCnrRecord,UpdateCnrList) 38 39 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 } 40 HPOINTER 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 } 64 60 PCNRITEM UpdateCnrRecord(HWND hwndCnr, CHAR * filename, BOOL partial, 65 61 DIRCNRDATA * dcd) … … 149 145 FillInRecordFromFFB(hwndCnr, pci, filename, &ffb, partial, dcd); 150 146 if (strlen(pci->szFileName) < 4) 151 FindDriveIcon(pci);147 SelectDriveIcon(pci); 152 148 oldemphasis = pci->rc.flRecordAttr & (CRA_SELECTED | CRA_CURSORED); 153 149 if (oldemphasis) … … 185 181 filename, &ffb, partial, dcd); 186 182 if (strlen(pci->szFileName) < 4) 187 FindDriveIcon(pci);183 SelectDriveIcon(pci); 188 184 memset(&ri, 0, sizeof(RECORDINSERT)); 189 185 ri.cb = sizeof(RECORDINSERT); … … 231 227 pci, filename, &ffb, partial, dcd); 232 228 if (strlen(pci->szFileName) < 4) 233 FindDriveIcon(pci);229 SelectDriveIcon(pci); 234 230 memset(&ri, 0, sizeof(RECORDINSERT)); 235 231 ri.cb = sizeof(RECORDINSERT); … … 278 274 filename, &ffb, partial, dcd); 279 275 if (strlen(pci->szFileName) < 4) 280 FindDriveIcon(pci);276 SelectDriveIcon(pci); 281 277 memset(&ri, 0, sizeof(RECORDINSERT)); 282 278 ri.cb = sizeof(RECORDINSERT); … … 436 432 pci, filename[x], &ffb, partial, dcd); 437 433 if (IsRoot(pci->szFileName)) 438 FindDriveIcon(pci);434 SelectDriveIcon(pci); 439 435 WinSendMsg(hwndCnr, 440 436 CM_SETRECORDEMPHASIS, … … 460 456 &ffb, partial, dcd); 461 457 if (strlen(pci->szFileName) < 4) 462 FindDriveIcon(pci);458 SelectDriveIcon(pci); 463 459 memset(&ri, 0, sizeof(RECORDINSERT)); 464 460 ri.cb = sizeof(RECORDINSERT); … … 514 510 &ffb, partial, dcd); 515 511 if (strlen(pci->szFileName) < 4) 516 FindDriveIcon(pci);512 SelectDriveIcon(pci); 517 513 memset(&ri, 0, sizeof(RECORDINSERT)); 518 514 ri.cb = sizeof(RECORDINSERT); … … 561 557 &ffb, partial, dcd); 562 558 if (strlen(pci->szFileName) < 4) 563 FindDriveIcon(pci);559 SelectDriveIcon(pci); 564 560 memset(&ri, 0, sizeof(RECORDINSERT)); 565 561 ri.cb = sizeof(RECORDINSERT);
Note:
See TracChangeset
for help on using the changeset viewer.