Changeset 1326
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) -
TabularUnified trunk/dll/init.c ¶
r1320 r1326 68 68 #include <process.h> 69 69 #include <time.h> 70 #include <ctype.h> 70 71 71 72 #define INCL_DOS … … 158 159 159 160 #pragma data_seg(GLOBAL1) 160 HEV DriveScanStart;161 161 HMTX hmtxFM2Delete; 162 162 HMTX hmtxFM2Globals; 163 163 ULONG OS2ver[2]; 164 ULONG sizeBool; 165 ULONG sizeUlong; 166 ULONG sizeInt; 167 ULONG sizePvoid; 164 168 PFNWP PFNWPCnr; 165 169 PFNWP PFNWPMLE; … … 172 176 BOOL fReminimize; 173 177 BOOL fWantFirstTimeInit; 178 BOOL fDrivetoSkip[26]; 174 179 HPOINTER hptrApp; 175 180 HPOINTER hptrArc; … … 707 712 ULONG size; 708 713 714 sizeBool = sizeof(BOOL); 715 sizeUlong = sizeof(ULONG); 716 sizeInt = sizeof(INT); 717 sizePvoid = sizeof(PVOID); 709 718 if (!StringsLoaded()) { 710 719 saymsg(MB_ENTER, … … 986 995 FindSwapperDat(); 987 996 988 size = sizeof(BOOL);997 //size = sizeof(BOOL); 989 998 PrfQueryProfileData(fmprof, 990 999 FM3Str, 991 1000 "SeparateParms", 992 1001 &fSeparateParms, 993 &size );1002 &sizeBool); 994 1003 if (!fSeparateParms) 995 1004 strcpy(appname, FM3Str); … … 1058 1067 WC_MAINWND, 1059 1068 MainWndProc, 1060 CS_SIZEREDRAW | CS_CLIPCHILDREN, size of(PVOID)* 8);1069 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizePvoid * 8); 1061 1070 WinRegisterClass(hab, 1062 1071 WC_MAINWND2, 1063 1072 MainWndProc2, 1064 CS_SIZEREDRAW | CS_CLIPCHILDREN, size of(PVOID)* 4);1073 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizePvoid * 4); 1065 1074 WinRegisterClass(hab, 1066 1075 WC_TREECONTAINER, 1067 1076 TreeClientWndProc, 1068 CS_SIZEREDRAW | CS_CLIPCHILDREN, size of(PVOID)* 2);1077 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizePvoid * 2); 1069 1078 WinRegisterClass(hab, 1070 1079 WC_DIRCONTAINER, 1071 1080 DirClientWndProc, 1072 CS_SIZEREDRAW | CS_CLIPCHILDREN, size of(PVOID)* 2);1081 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizePvoid * 2); 1073 1082 WinRegisterClass(hab, 1074 1083 WC_COLLECTOR, 1075 1084 CollectorClientWndProc, 1076 CS_SIZEREDRAW | CS_CLIPCHILDREN, size of(PVOID)* 2);1085 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizePvoid * 2); 1077 1086 WinRegisterClass(hab, 1078 1087 WC_ARCCONTAINER, 1079 1088 ArcClientWndProc, 1080 CS_SIZEREDRAW | CS_CLIPCHILDREN, size of(PVOID)* 2);1089 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizePvoid * 2); 1081 1090 WinRegisterClass(hab, 1082 1091 WC_MLEEDITOR, 1083 1092 MLEEditorProc, 1084 CS_SIZEREDRAW | CS_CLIPCHILDREN, size of(PVOID)* 2);1093 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizePvoid * 2); 1085 1094 WinRegisterClass(hab, 1086 1095 WC_INIEDITOR, 1087 1096 IniProc, 1088 CS_SIZEREDRAW | CS_CLIPCHILDREN, size of(PVOID)* 2);1097 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizePvoid * 2); 1089 1098 WinRegisterClass(hab, 1090 1099 WC_TOOLBACK, 1091 1100 ToolBackProc, 1092 1101 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1093 size of(PVOID));1102 sizePvoid); 1094 1103 WinRegisterClass(hab, 1095 1104 WC_DRIVEBACK, 1096 1105 DriveBackProc, 1097 1106 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1098 size of(PVOID));1107 sizePvoid); 1099 1108 WinRegisterClass(hab, 1100 1109 WC_SEEALL, 1101 1110 SeeAllWndProc, 1102 CS_SIZEREDRAW | CS_CLIPCHILDREN, size of(PVOID));1111 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizePvoid); 1103 1112 WinRegisterClass(hab, 1104 1113 WC_NEWVIEW, 1105 1114 ViewWndProc, 1106 CS_SIZEREDRAW | CS_CLIPCHILDREN, size of(PVOID));1115 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizePvoid); 1107 1116 WinRegisterClass(hab, 1108 1117 WC_TOOLBUTTONS, 1109 1118 ChildButtonProc, 1110 1119 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1111 size of(PVOID));1120 sizePvoid); 1112 1121 WinRegisterClass(hab, 1113 1122 WC_DRIVEBUTTONS, 1114 1123 DriveProc, 1115 1124 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1116 size of(PVOID));1125 sizePvoid); 1117 1126 WinRegisterClass(hab, 1118 1127 WC_BUBBLE, 1119 1128 BubbleProc, 1120 1129 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1121 size of(ULONG)* 2);1130 sizeUlong * 2); 1122 1131 WinRegisterClass(hab, 1123 1132 WC_STATUS, 1124 1133 StatusProc, 1125 1134 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1126 size of(ULONG));1135 sizeUlong); 1127 1136 WinRegisterClass(hab, 1128 1137 WC_DIRSTATUS, 1129 1138 DirTextProc, 1130 1139 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1131 size of(ULONG));1140 sizeUlong); 1132 1141 WinRegisterClass(hab, 1133 1142 WC_TREESTATUS, 1134 1143 TreeStatProc, 1135 1144 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1136 size of(ULONG));1145 sizeUlong); 1137 1146 WinRegisterClass(hab, 1138 1147 WC_ARCSTATUS, 1139 1148 ArcTextProc, 1140 1149 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1141 size of(ULONG));1150 sizeUlong); 1142 1151 WinRegisterClass(hab, 1143 1152 WC_COLSTATUS, 1144 1153 CollectorTextProc, 1145 1154 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1146 size of(ULONG));1155 sizeUlong); 1147 1156 WinRegisterClass(hab, 1148 1157 WC_SEESTATUS, 1149 1158 SeeStatusProc, 1150 1159 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1151 size of(ULONG));1160 sizeUlong); 1152 1161 WinRegisterClass(hab, 1153 1162 WC_VIEWSTATUS, 1154 1163 ViewStatusProc, 1155 1164 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1156 size of(ULONG));1165 sizeUlong); 1157 1166 WinRegisterClass(hab, 1158 1167 WC_ERRORWND, 1159 1168 NotifyWndProc, 1160 1169 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1161 size of(PVOID));1170 sizePvoid); 1162 1171 WinRegisterClass(hab, 1163 1172 WC_MINITIME, 1164 1173 MiniTimeProc, 1165 1174 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1166 size of(PVOID)* 2);1175 sizePvoid * 2); 1167 1176 WinRegisterClass(hab, 1168 1177 WC_DATABAR, 1169 DataProc, CS_SIZEREDRAW, size of(PVOID));1178 DataProc, CS_SIZEREDRAW, sizePvoid); 1170 1179 WinRegisterClass(hab, 1171 1180 WC_TREEOPENBUTTON, 1172 1181 OpenButtonProc, 1173 1182 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1174 size of(PVOID));1183 sizePvoid); 1175 1184 WinRegisterClass(hab, 1176 1185 WC_AUTOVIEW, 1177 1186 AutoViewProc, 1178 1187 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1179 size of(PVOID));1188 sizePvoid); 1180 1189 WinRegisterClass(hab, 1181 1190 WC_LED, 1182 1191 LEDProc, 1183 1192 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 1184 size of(PVOID));1193 sizePvoid); 1185 1194 1186 1195 if (DosCreateMutexSem("\\SEM\\GLOBAL1", &hmtxFM2Globals, 0L, FALSE)) … … 1190 1199 Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 1191 1200 "DosCreateMutexSem"); 1192 if (DosCreateEventSem("\\SEM32\\DRIVESCAN", &DriveScanStart, 0L, FALSE))1201 /*if (DosCreateEventSem("\\SEM32\\DRIVESCAN", &DriveScanStart, 0L, FALSE)) 1193 1202 Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 1194 1203 GetPString(IDS_CREATESEMFAILED)); 1195 fInitialDriveScan = TRUE; 1204 fInitialDriveScan = TRUE;*/ 1196 1205 1197 1206 /* … … 1237 1246 1238 1247 // load preferences from profile (INI) file 1239 size = sizeof(ULONG); 1240 PrfQueryProfileData(fmprof, appname, "MaxComLineStrg", &MaxComLineStrg, &size); 1248 PrfQueryProfileData(fmprof, appname, "MaxComLineStrg", &MaxComLineStrg, &sizeUlong); 1241 1249 // Give user one chance to reset the default command line length to 1024 (4os2's unexpanded max) 1242 1250 if (MaxComLineStrg == 2048) { 1243 1251 BOOL MaxComLineChecked = FALSE; 1244 1252 1245 size = sizeof(BOOL); 1246 PrfQueryProfileData(fmprof, appname, "MaxComLineChecked", &MaxComLineChecked, &size); 1253 PrfQueryProfileData(fmprof, appname, "MaxComLineChecked", &MaxComLineChecked, &sizeBool); 1247 1254 if (!MaxComLineChecked) { 1248 1255 ret = saymsg(MB_YESNO, … … 1253 1260 MaxComLineStrg = 1024; 1254 1261 MaxComLineChecked = TRUE; 1255 PrfWriteProfileData(fmprof, appname, "MaxComLineChecked", &MaxComLineChecked, size of(BOOL));1262 PrfWriteProfileData(fmprof, appname, "MaxComLineChecked", &MaxComLineChecked, sizeBool); 1256 1263 } 1257 1264 } … … 1293 1300 if (!pszTreeEnvVarList) 1294 1301 return 0; //already complained 1295 size = sizeof(BOOL); 1296 PrfQueryProfileData(fmprof, appname, "ShowTarget", &fShowTarget, &size); 1297 size = sizeof(BOOL); 1298 PrfQueryProfileData(fmprof, appname, "CheckMM", &fCheckMM, &size); 1299 size = sizeof(BOOL); 1300 PrfQueryProfileData(fmprof, appname, "ChangeTarget", &fChangeTarget, &size); 1301 size = sizeof(BOOL); 1302 PrfQueryProfileData(fmprof, appname, "ConfirmTarget", &fConfirmTarget, &size); 1303 size = sizeof(BOOL); 1304 PrfQueryProfileData(fmprof, FM3Str, "CustomFileDlg", &fCustomFileDlg, &size); 1305 size = sizeof(BOOL); 1306 PrfQueryProfileData(fmprof, FM3Str, "SaveMiniCmds", &fSaveMiniCmds, &size); 1307 size = sizeof(BOOL); 1308 PrfQueryProfileData(fmprof, appname, "SaveBigCmds", &fSaveBigCmds, &size); 1309 size = sizeof(BOOL); 1310 PrfQueryProfileData(fmprof, appname, "NoFoldMenu", &fNoFoldMenu, &size); 1311 size = sizeof(BOOL); 1312 PrfQueryProfileData(fmprof, FM3Str, "ThreadNotes", &fThreadNotes, &size); 1313 size = sizeof(BOOL); 1314 PrfQueryProfileData(fmprof, FM3Str, "Prnpagenums", &prnpagenums, &size); 1315 size = sizeof(BOOL); 1316 PrfQueryProfileData(fmprof, FM3Str, "Prnalt", &prnalt, &size); 1317 size = sizeof(BOOL); 1318 PrfQueryProfileData(fmprof, FM3Str, "Prnformat", &prnformat, &size); 1319 size = sizeof(BOOL); 1302 PrfQueryProfileData(fmprof, appname, "ShowTarget", &fShowTarget, &sizeBool); 1303 PrfQueryProfileData(fmprof, appname, "CheckMM", &fCheckMM, &sizeBool); 1304 PrfQueryProfileData(fmprof, appname, "ChangeTarget", &fChangeTarget, &sizeBool); 1305 PrfQueryProfileData(fmprof, appname, "ConfirmTarget", &fConfirmTarget, &sizeBool); 1306 PrfQueryProfileData(fmprof, FM3Str, "CustomFileDlg", &fCustomFileDlg, &sizeBool); 1307 PrfQueryProfileData(fmprof, FM3Str, "SaveMiniCmds", &fSaveMiniCmds, &sizeBool); 1308 PrfQueryProfileData(fmprof, appname, "SaveBigCmds", &fSaveBigCmds, &sizeBool); 1309 PrfQueryProfileData(fmprof, appname, "NoFoldMenu", &fNoFoldMenu, &sizeBool); 1310 PrfQueryProfileData(fmprof, FM3Str, "ThreadNotes", &fThreadNotes, &sizeBool); 1311 PrfQueryProfileData(fmprof, FM3Str, "Prnpagenums", &prnpagenums, &sizeBool); 1312 PrfQueryProfileData(fmprof, FM3Str, "Prnalt", &prnalt, &sizeBool); 1313 PrfQueryProfileData(fmprof, FM3Str, "Prnformat", &prnformat, &sizeBool); 1320 1314 PrfQueryProfileData(fmprof, FM3Str, "Prnformfeedbefore", 1321 &prnformfeedbefore, &size); 1322 size = sizeof(BOOL); 1315 &prnformfeedbefore, &sizeBool); 1323 1316 PrfQueryProfileData(fmprof, FM3Str, 1324 "Prnformfeedafter",&prnformfeedafter, &size); 1325 size = sizeof(ULONG); 1326 PrfQueryProfileData(fmprof, FM3Str, "Prntabspaces", &prntabspaces, &size); 1327 size = sizeof(ULONG); 1328 PrfQueryProfileData(fmprof, FM3Str, "Prnwidth", &prnwidth, &size); 1329 size = sizeof(ULONG); 1330 PrfQueryProfileData(fmprof, FM3Str, "Prnlength", &prnlength, &size); 1331 size = sizeof(ULONG); 1332 PrfQueryProfileData(fmprof, FM3Str, "Prntmargin", &prntmargin, &size); 1333 size = sizeof(ULONG); 1334 PrfQueryProfileData(fmprof, FM3Str, "Prnbmargin", &prnbmargin, &size); 1335 size = sizeof(ULONG); 1336 PrfQueryProfileData(fmprof, FM3Str, "Prnlmargin", &prnlmargin, &size); 1337 size = sizeof(ULONG); 1338 PrfQueryProfileData(fmprof, FM3Str, "Prnrmargin", &prnrmargin, &size); 1339 size = sizeof(ULONG); 1340 PrfQueryProfileData(fmprof, FM3Str, "Prnspacing", &prnspacing, &size); 1341 size = sizeof(BOOL); 1342 PrfQueryProfileData(fmprof, FM3Str, "NoDead", &fNoDead, &size); 1343 size = sizeof(BOOL); 1344 PrfQueryProfileData(fmprof, FM3Str, "NoFinger", &fNoFinger, &size); 1345 size = sizeof(BOOL); 1346 PrfQueryProfileData(fmprof, appname, "SwitchTree", &fSwitchTree, &size); 1347 size = sizeof(BOOL); 1317 "Prnformfeedafter",&prnformfeedafter, &sizeBool); 1318 PrfQueryProfileData(fmprof, FM3Str, "Prntabspaces", &prntabspaces, &sizeUlong); 1319 PrfQueryProfileData(fmprof, FM3Str, "Prnwidth", &prnwidth, &sizeUlong); 1320 PrfQueryProfileData(fmprof, FM3Str, "Prnlength", &prnlength, &sizeUlong); 1321 PrfQueryProfileData(fmprof, FM3Str, "Prntmargin", &prntmargin, &sizeUlong); 1322 PrfQueryProfileData(fmprof, FM3Str, "Prnbmargin", &prnbmargin, &sizeUlong); 1323 PrfQueryProfileData(fmprof, FM3Str, "Prnlmargin", &prnlmargin, &sizeUlong); 1324 PrfQueryProfileData(fmprof, FM3Str, "Prnrmargin", &prnrmargin, &sizeUlong); 1325 PrfQueryProfileData(fmprof, FM3Str, "Prnspacing", &prnspacing, &sizeUlong); 1326 PrfQueryProfileData(fmprof, FM3Str, "NoDead", &fNoDead, &sizeBool); 1327 PrfQueryProfileData(fmprof, FM3Str, "NoFinger", &fNoFinger, &sizeBool); 1328 PrfQueryProfileData(fmprof, appname, "SwitchTree", &fSwitchTree, &sizeBool); 1348 1329 PrfQueryProfileData(fmprof, appname, "SwitchTreeExpand", 1349 &fSwitchTreeExpand, &size); 1350 size = sizeof(BOOL); 1330 &fSwitchTreeExpand, &sizeBool); 1351 1331 PrfQueryProfileData(fmprof, appname, "SwitchTreeOnFocus", 1352 &fSwitchTreeOnFocus, &size); 1353 size = sizeof(BOOL); 1332 &fSwitchTreeOnFocus, &sizeBool); 1354 1333 PrfQueryProfileData(fmprof, appname, "CollapseFirst", 1355 &fCollapseFirst, &size); 1356 size = sizeof(BOOL); 1334 &fCollapseFirst, &sizeBool); 1357 1335 PrfQueryProfileData(fmprof, appname, "FilesInTree", 1358 &fFilesInTree, &size); 1359 size = sizeof(BOOL); 1360 PrfQueryProfileData(fmprof, FM3Str, "TopDir", &fTopDir, &size); 1361 size = sizeof(BOOL); 1362 PrfQueryProfileData(fmprof, FM3Str, "LookInDir", &fLookInDir, &size); 1336 &fFilesInTree, &sizeBool); 1337 PrfQueryProfileData(fmprof, FM3Str, "TopDir", &fTopDir, &sizeBool); 1338 PrfQueryProfileData(fmprof, FM3Str, "LookInDir", &fLookInDir, &sizeBool); 1363 1339 PrfQueryProfileString(fmprof, appname, "DefArc", NULL, szDefArc, 1364 1340 sizeof(szDefArc)); 1365 size = sizeof(ULONG);1366 1341 PrfQueryProfileData(fmprof, FM3Str, "AutoviewHeight", 1367 &AutoviewHeight, &size); 1368 size = sizeof(BOOL); 1369 PrfQueryProfileData(fmprof, FM3Str, "KeepCmdLine", &fKeepCmdLine, &size); 1342 &AutoviewHeight, &sizeUlong); 1343 PrfQueryProfileData(fmprof, FM3Str, "KeepCmdLine", &fKeepCmdLine, &sizeBool); 1370 1344 if (strcmp(realappname, "FM/4")) { 1371 size = sizeof(BOOL); 1372 PrfQueryProfileData(fmprof, FM3Str, "MoreButtons", &fMoreButtons, &size); 1373 size = sizeof(BOOL); 1374 PrfQueryProfileData(fmprof, FM3Str, "Drivebar", &fDrivebar, &size); 1345 PrfQueryProfileData(fmprof, FM3Str, "MoreButtons", &fMoreButtons, &sizeBool); 1346 PrfQueryProfileData(fmprof, FM3Str, "Drivebar", &fDrivebar, &sizeBool); 1375 1347 } 1376 1348 else 1377 1349 fDrivebar = fMoreButtons = TRUE; 1378 size = sizeof(BOOL); 1379 PrfQueryProfileData(fmprof, appname, "NoSearch", &fNoSearch, &size); 1380 size = sizeof(BOOL); 1381 PrfQueryProfileData(fmprof, appname, "GuessType", &fGuessType, &size); 1382 size = sizeof(BOOL); 1383 PrfQueryProfileData(fmprof, appname, "ViewChild", &fViewChild, &size); 1384 size = sizeof(BOOL); 1385 PrfQueryProfileData(fmprof, appname, "ShowEnv", &fShowEnv, &size); 1350 PrfQueryProfileData(fmprof, appname, "NoSearch", &fNoSearch, &sizeBool); 1351 PrfQueryProfileData(fmprof, appname, "GuessType", &fGuessType, &sizeBool); 1352 PrfQueryProfileData(fmprof, appname, "ViewChild", &fViewChild, &sizeBool); 1353 PrfQueryProfileData(fmprof, appname, "ShowEnv", &fShowEnv, &sizeBool); 1386 1354 size = MaxComLineStrg; 1387 1355 PrfQueryProfileData(fmprof, appname, "TreeEnvVarList", pszTreeEnvVarList, &size); 1388 size = sizeof(BOOL); 1389 PrfQueryProfileData(fmprof, appname, "LeaveTree", &fLeaveTree, &size); 1390 size = sizeof(BOOL); 1391 PrfQueryProfileData(fmprof, FM3Str, "Comments", &fComments, &size); 1392 size = sizeof(ULONG); 1393 PrfQueryProfileData(fmprof, appname, "WS_ANIMATE", &fwsAnimate, &size); 1356 PrfQueryProfileData(fmprof, appname, "LeaveTree", &fLeaveTree, &sizeBool); 1357 PrfQueryProfileData(fmprof, FM3Str, "Comments", &fComments, &sizeBool); 1358 PrfQueryProfileData(fmprof, appname, "WS_ANIMATE", &fwsAnimate, &sizeUlong); 1394 1359 if (fwsAnimate) 1395 1360 fwsAnimate = WS_ANIMATE; 1396 size = sizeof(ULONG);1397 size = sizeof(BOOL);1398 1361 PrfQueryProfileData(fmprof, appname, "SelectedAlways", 1399 &fSelectedAlways, &size); 1400 size = sizeof(BOOL); 1401 PrfQueryProfileData(fmprof, FM3Str, "ToolbarHelp", &fToolbarHelp, &size); 1402 size = sizeof(BOOL); 1403 PrfQueryProfileData(fmprof, FM3Str, "OtherHelp", &fOtherHelp, &size); 1404 size = sizeof(BOOL); 1405 PrfQueryProfileData(fmprof, FM3Str, "DrivebarHelp", &fDrivebarHelp, &size); 1406 size = sizeof(BOOL); 1407 PrfQueryProfileData(fmprof, appname, "AutoAddDirs", &fAutoAddDirs, &size); 1408 size = sizeof(BOOL); 1362 &fSelectedAlways, &sizeBool); 1363 PrfQueryProfileData(fmprof, FM3Str, "ToolbarHelp", &fToolbarHelp, &sizeBool); 1364 PrfQueryProfileData(fmprof, FM3Str, "OtherHelp", &fOtherHelp, &sizeBool); 1365 PrfQueryProfileData(fmprof, FM3Str, "DrivebarHelp", &fDrivebarHelp, &sizeBool); 1366 PrfQueryProfileData(fmprof, appname, "AutoAddDirs", &fAutoAddDirs, &sizeBool); 1409 1367 PrfQueryProfileData(fmprof, appname, 1410 "AutoAddAllDirs", &fAutoAddAllDirs, &size); 1411 size = sizeof(BOOL); 1368 "AutoAddAllDirs", &fAutoAddAllDirs, &sizeBool); 1412 1369 PrfQueryProfileData(fmprof, FM3Str, "UserListSwitches", 1413 &fUserListSwitches, &size); 1414 size = sizeof(BOOL); 1370 &fUserListSwitches, &sizeBool); 1415 1371 PrfQueryProfileData(fmprof, appname, "UseNewViewer", 1416 &fUseNewViewer, &size); 1417 size = sizeof(BOOL); 1372 &fUseNewViewer, &sizeBool); 1418 1373 PrfQueryProfileData(fmprof, appname, "DefaultDeletePerm", 1419 &fDefaultDeletePerm, &size); 1420 size = sizeof(BOOL); 1374 &fDefaultDeletePerm, &sizeBool); 1421 1375 PrfQueryProfileData(fmprof, FM3Str, "ExternalINIs", 1422 &fExternalINIs, &size); 1423 size = sizeof(BOOL); 1376 &fExternalINIs, &sizeBool); 1424 1377 PrfQueryProfileData(fmprof, FM3Str, "ExternalCollector", 1425 &fExternalCollector, &size); 1426 size = sizeof(BOOL); 1378 &fExternalCollector, &sizeBool); 1427 1379 PrfQueryProfileData(fmprof, FM3Str, "ExternalArcboxes", 1428 &fExternalArcboxes, &size); 1429 size = sizeof(BOOL); 1380 &fExternalArcboxes, &sizeBool); 1430 1381 PrfQueryProfileData(fmprof, FM3Str, "ExternalViewer", 1431 &fExternalViewer, &size); 1432 size = sizeof(BOOL); 1382 &fExternalViewer, &sizeBool); 1433 1383 PrfQueryProfileData(fmprof, FM3Str, "UseQProcStat", 1434 &fUseQProcStat, &size); 1435 size = sizeof(BOOL); 1384 &fUseQProcStat, &sizeBool); 1436 1385 PrfQueryProfileData(fmprof, FM3Str, "UseQSysState", 1437 &fUseQSysState, &size); 1438 size = sizeof(BOOL); 1439 PrfQueryProfileData(fmprof, FM3Str, "DataMin", &fDataMin, &size); 1440 size = sizeof(BOOL); 1441 PrfQueryProfileData(fmprof, appname, "DataToFore", &fDataToFore, &size); 1442 size = sizeof(BOOL); 1386 &fUseQSysState, &sizeBool); 1387 PrfQueryProfileData(fmprof, FM3Str, "DataMin", &fDataMin, &sizeBool); 1388 PrfQueryProfileData(fmprof, appname, "DataToFore", &fDataToFore, &sizeBool); 1443 1389 PrfQueryProfileData(fmprof, appname, "DataShowDrives", 1444 &fDataShowDrives, &size); 1445 size = sizeof(BOOL); 1390 &fDataShowDrives, &sizeBool); 1446 1391 PrfQueryProfileData(fmprof, appname, "DataInclRemote", 1447 &fDataInclRemote, &size); 1448 size = sizeof(BOOL); 1449 PrfQueryProfileData(fmprof, FM3Str, "SplitStatus", &fSplitStatus, &size); 1450 size = sizeof(BOOL); 1392 &fDataInclRemote, &sizeBool); 1393 PrfQueryProfileData(fmprof, FM3Str, "SplitStatus", &fSplitStatus, &sizeBool); 1451 1394 PrfQueryProfileData(fmprof, appname, "FolderAfterExtract", 1452 &fFolderAfterExtract, &size); 1453 size = sizeof(BOOL); 1454 PrfQueryProfileData(fmprof, FM3Str, "DullDatabar", &fDullMin, &size); 1455 size = sizeof(BOOL); 1456 PrfQueryProfileData(fmprof, appname, "BlueLED", &fBlueLED, &size); 1457 size = sizeof(BOOL); 1395 &fFolderAfterExtract, &sizeBool); 1396 PrfQueryProfileData(fmprof, FM3Str, "DullDatabar", &fDullMin, &sizeBool); 1397 PrfQueryProfileData(fmprof, appname, "BlueLED", &fBlueLED, &sizeBool); 1458 1398 PrfQueryProfileData(fmprof, appname, "ConfirmDelete", 1459 &fConfirmDelete, &size); 1460 size = sizeof(BOOL); 1461 PrfQueryProfileData(fmprof, FM3Str, "SaveState", &fSaveState, &size); 1462 size = sizeof(BOOL); 1463 PrfQueryProfileData(fmprof, appname, "SyncUpdates", &fSyncUpdates, &size); 1464 size = sizeof(BOOL); 1465 PrfQueryProfileData(fmprof, appname, "LoadSubject", &fLoadSubject, &size); 1466 size = sizeof(BOOL); 1467 PrfQueryProfileData(fmprof, appname, "UnHilite", &fUnHilite, &size); 1468 size = sizeof(BOOL); 1469 PrfQueryProfileData(fmprof, FM3Str, "TileBackwards", &fTileBackwards, &size); 1470 size = sizeof(BOOL); 1471 PrfQueryProfileData(fmprof, appname, "LoadLongname", &fLoadLongnames, &size); 1472 size = sizeof(BOOL); 1473 PrfQueryProfileData(fmprof, appname, "VerifyWrites", &fVerify, &size); 1399 &fConfirmDelete, &sizeBool); 1400 PrfQueryProfileData(fmprof, FM3Str, "SaveState", &fSaveState, &sizeBool); 1401 if (fSaveState) { 1402 ULONG numsaves = 0; 1403 CHAR szKey[STATE_NAME_MAX_BYTES + 80]; 1404 CHAR szDir[CCHMAXPATH]; 1405 ULONG drvNum; 1406 INT x; 1407 1408 fInitialDriveScan = TRUE; 1409 sprintf(szKey, "%s.NumDirsLastTime", GetPString(IDS_SHUTDOWNSTATE)); 1410 if (PrfQueryProfileData(fmprof, 1411 FM3Str, szKey, (PVOID) &numsaves, &sizeUlong)) { 1412 for (x = numsaves - 1; x >= 0; x--) { 1413 sprintf(szKey, "%s.DirCnrDir.%lu", GetPString(IDS_SHUTDOWNSTATE), x); 1414 size = sizeof(szDir); 1415 if (PrfQueryProfileData(fmprof, FM3Str, szKey, (PVOID) szDir, &size)) { 1416 drvNum = toupper(*szDir) - 'A'; 1417 fDrivetoSkip[drvNum] = TRUE; 1418 } 1419 } 1420 } 1421 } 1422 PrfQueryProfileData(fmprof, appname, "SyncUpdates", &fSyncUpdates, &sizeBool); 1423 PrfQueryProfileData(fmprof, appname, "LoadSubject", &fLoadSubject, &sizeBool); 1424 PrfQueryProfileData(fmprof, appname, "UnHilite", &fUnHilite, &sizeBool); 1425 PrfQueryProfileData(fmprof, FM3Str, "TileBackwards", &fTileBackwards, &sizeBool); 1426 PrfQueryProfileData(fmprof, appname, "LoadLongname", &fLoadLongnames, &sizeBool); 1427 PrfQueryProfileData(fmprof, appname, "VerifyWrites", &fVerify, &sizeBool); 1474 1428 DosSetVerify(fVerify); 1475 size = sizeof(BOOL); 1476 PrfQueryProfileData(fmprof, appname, "DontMoveMouse", &fDontMoveMouse, &size); 1477 size = sizeof(BOOL); 1478 PrfQueryProfileData(fmprof, appname, "NoIconsFiles", &fNoIconsFiles, &size); 1479 size = sizeof(BOOL); 1480 PrfQueryProfileData(fmprof, appname, "NoIconsDirs", &fNoIconsDirs, &size); 1481 size = sizeof(BOOL); 1482 PrfQueryProfileData(fmprof, appname, "ForceUpper", &fForceUpper, &size); 1483 size = sizeof(BOOL); 1484 PrfQueryProfileData(fmprof, appname, "ForceLower", &fForceLower, &size); 1485 size = sizeof(BOOL); 1486 PrfQueryProfileData(fmprof, FM3Str, "TextTools", &fTextTools, &size); 1487 size = sizeof(BOOL); 1488 PrfQueryProfileData(fmprof, FM3Str, "ToolTitles", &fToolTitles, &size); 1489 size = sizeof(BOOL); 1490 PrfQueryProfileData(fmprof, appname, "DoubleClickOpens", &fDCOpens, &size); 1491 size = sizeof(BOOL); 1492 PrfQueryProfileData(fmprof, appname, "LinkSetsIcon", &fLinkSetsIcon, &size); 1493 size = sizeof(INT); 1494 PrfQueryProfileData(fmprof, appname, "Sort", &sortFlags, &size); 1495 size = sizeof(INT); 1496 PrfQueryProfileData(fmprof, appname, "TreeSort", &TreesortFlags, &size); 1497 size = sizeof(INT); 1429 PrfQueryProfileData(fmprof, appname, "DontMoveMouse", &fDontMoveMouse, &sizeBool); 1430 PrfQueryProfileData(fmprof, appname, "NoIconsFiles", &fNoIconsFiles, &sizeBool); 1431 PrfQueryProfileData(fmprof, appname, "NoIconsDirs", &fNoIconsDirs, &sizeBool); 1432 PrfQueryProfileData(fmprof, appname, "ForceUpper", &fForceUpper, &sizeBool); 1433 PrfQueryProfileData(fmprof, appname, "ForceLower", &fForceLower, &sizeBool); 1434 PrfQueryProfileData(fmprof, FM3Str, "TextTools", &fTextTools, &sizeBool); 1435 PrfQueryProfileData(fmprof, FM3Str, "ToolTitles", &fToolTitles, &sizeBool); 1436 PrfQueryProfileData(fmprof, appname, "DoubleClickOpens", &fDCOpens, &sizeBool); 1437 PrfQueryProfileData(fmprof, appname, "LinkSetsIcon", &fLinkSetsIcon, &sizeBool); 1438 PrfQueryProfileData(fmprof, appname, "Sort", &sortFlags, &sizeInt); 1439 PrfQueryProfileData(fmprof, appname, "TreeSort", &TreesortFlags, &sizeInt); 1498 1440 PrfQueryProfileData(fmprof, appname, 1499 "CollectorSort", &CollectorsortFlags, &size );1441 "CollectorSort", &CollectorsortFlags, &sizeInt); 1500 1442 size = sizeof(targetdir); 1501 1443 PrfQueryProfileData(fmprof, appname, "Targetdir", targetdir, &size); … … 1504 1446 size = sizeof(extractpath); 1505 1447 PrfQueryProfileData(fmprof, appname, "ExtractPath", extractpath, &size); 1506 size = sizeof(BOOL); 1507 PrfQueryProfileData(fmprof, FM3Str, "FileNamePathCnr", &fFileNameCnrPath, &size); 1448 PrfQueryProfileData(fmprof, FM3Str, "FileNamePathCnr", &fFileNameCnrPath, &sizeBool); 1508 1449 size = sizeof(printer); 1509 1450 PrfQueryProfileData(fmprof, appname, "Printer", printer, &size); … … 1523 1464 size = MaxComLineStrg; 1524 1465 PrfQueryProfileData(fmprof, appname, "Virus", virus, &size); 1525 size = sizeof(BOOL); 1526 PrfQueryProfileData(fmprof, appname, "FtpRunWPSDefault", &fFtpRunWPSDefault, &size); 1466 PrfQueryProfileData(fmprof, appname, "FtpRunWPSDefault", &fFtpRunWPSDefault, &sizeBool); 1527 1467 size = MaxComLineStrg; 1528 1468 PrfQueryProfileData(fmprof, appname, "FTPRun", ftprun, &size); 1529 1469 if (!*ftprun) 1530 1470 fFtpRunWPSDefault = TRUE; 1531 size = sizeof(BOOL); 1532 PrfQueryProfileData(fmprof, appname, "HttpRunWPSDefault", &fHttpRunWPSDefault, &size); 1471 PrfQueryProfileData(fmprof, appname, "HttpRunWPSDefault", &fHttpRunWPSDefault, &sizeBool); 1533 1472 size = MaxComLineStrg; 1534 1473 PrfQueryProfileData(fmprof, appname, "HTTPRun", httprun, &size); … … 1546 1485 PrfQueryProfileData(fmprof, appname, "LastToolbar", lasttoolbar, 1547 1486 &size); 1548 size = sizeof(BOOL);1549 1487 PrfQueryProfileData(fmprof, appname, "LibPathStrictHttpRun", &fLibPathStrictHttpRun, 1550 &size); 1551 size = sizeof(BOOL); 1488 &sizeBool); 1552 1489 PrfQueryProfileData(fmprof, appname, "LibPathStrictFtpRun", &fLibPathStrictFtpRun, 1553 &size); 1554 size = sizeof(BOOL); 1490 &sizeBool); 1555 1491 PrfQueryProfileData(fmprof, appname, "LibPathStrictMailRun", &fLibPathStrictMailRun, 1556 &size); 1557 size = sizeof(BOOL); 1492 &sizeBool); 1558 1493 PrfQueryProfileData(fmprof, appname, "NoMailtoMailRun", &fNoMailtoMailRun, 1559 &size); 1560 size = sizeof(BOOL); 1494 &sizeBool); 1561 1495 PrfQueryProfileData(fmprof, appname, "FollowTree", &fFollowTree, 1562 &size); 1563 size = sizeof(BOOL); 1496 &sizeBool); 1564 1497 PrfQueryProfileData(fmprof, appname, "StartMaximized", 1565 &fStartMaximized, &size );1498 &fStartMaximized, &sizeBool); 1566 1499 if (!fStartMaximized) { 1567 size = sizeof(BOOL);1568 1500 PrfQueryProfileData(fmprof, appname, "StartMinimized", 1569 &fStartMinimized, &size); 1570 } 1571 size = sizeof(BOOL); 1572 PrfQueryProfileData(fmprof, appname, "DefaultCopy", &fCopyDefault, &size); 1573 size = sizeof(BOOL); 1574 PrfQueryProfileData(fmprof, appname, "IdleCopy", &fRealIdle, &size); 1575 size = sizeof(BOOL); 1501 &fStartMinimized, &sizeBool); 1502 } 1503 PrfQueryProfileData(fmprof, appname, "DefaultCopy", &fCopyDefault, &sizeBool); 1504 PrfQueryProfileData(fmprof, appname, "IdleCopy", &fRealIdle, &sizeBool); 1576 1505 PrfQueryProfileData(fmprof, appname, "ArcStuffVisible", 1577 &fArcStuffVisible, &size); 1578 size = sizeof(BOOL); 1579 PrfQueryProfileData(fmprof, FM3Str, "NoTreeGap", &fNoTreeGap, &size); 1580 size = sizeof(BOOL); 1506 &fArcStuffVisible, &sizeBool); 1507 PrfQueryProfileData(fmprof, FM3Str, "NoTreeGap", &fNoTreeGap, &sizeBool); 1581 1508 PrfQueryProfileData(fmprof, FM3Str, "VTreeOpensWPS", 1582 &fVTreeOpensWPS, &size); 1583 size = sizeof(BOOL); 1584 PrfQueryProfileData(fmprof, appname, "RemoteBug", &fRemoteBug, &size); 1585 size = sizeof(BOOL); 1509 &fVTreeOpensWPS, &sizeBool); 1510 PrfQueryProfileData(fmprof, appname, "RemoteBug", &fRemoteBug, &sizeBool); 1586 1511 PrfQueryProfileData(fmprof, appname, "Drag&DropDlg", 1587 &fDragndropDlg, &size); 1588 size = sizeof(BOOL); 1589 PrfQueryProfileData(fmprof, FM3Str, "UserComboBox", &fUserComboBox, &size); 1590 size = sizeof(BOOL); 1591 PrfQueryProfileData(fmprof, FM3Str, "MinDirOnOpen", &fMinOnOpen, &size); 1592 size = sizeof(BOOL); 1512 &fDragndropDlg, &sizeBool); 1513 PrfQueryProfileData(fmprof, FM3Str, "UserComboBox", &fUserComboBox, &sizeBool); 1514 PrfQueryProfileData(fmprof, FM3Str, "MinDirOnOpen", &fMinOnOpen, &sizeBool); 1593 1515 PrfQueryProfileData(fmprof, appname, "QuickArcFind", 1594 &fQuickArcFind, &size); 1595 size = sizeof(BOOL); 1516 &fQuickArcFind, &sizeBool); 1596 1517 PrfQueryProfileData(fmprof, FM3Str, "NoRemovableScan", 1597 &fNoRemovableScan, &size); 1598 size = sizeof(ULONG); 1518 &fNoRemovableScan, &sizeBool); 1599 1519 PrfQueryProfileData(fmprof, FM3Str, "NoBrokenNotify", 1600 &NoBrokenNotify, &size); 1601 size = sizeof(ULONG); 1520 &NoBrokenNotify, &sizeUlong); 1602 1521 PrfQueryProfileData(fmprof, appname, "ContainerType", &ulCnrType, 1603 &size); 1604 size = sizeof(ULONG); 1605 PrfQueryProfileData(fmprof, appname, "FilesToGet", &FilesToGet, &size); 1522 &sizeUlong); 1523 PrfQueryProfileData(fmprof, appname, "FilesToGet", &FilesToGet, &sizeUlong); 1606 1524 if (FilesToGet < FILESTOGET_MIN) 1607 1525 FilesToGet = FILESTOGET_MIN; 1608 1526 else if (FilesToGet > FILESTOGET_MAX) 1609 1527 FilesToGet = FILESTOGET_MAX; 1610 size = sizeof(BOOL); 1611 PrfQueryProfileData(fmprof, FM3Str, "AutoView", &fAutoView, &size); 1612 size = sizeof(BOOL); 1613 PrfQueryProfileData(fmprof, FM3Str, "FM2Deletes", &fFM2Deletes, &size); 1614 size = sizeof(BOOL); 1615 PrfQueryProfileData(fmprof, FM3Str, "TrashCan", &fTrashCan, &size); 1528 PrfQueryProfileData(fmprof, FM3Str, "AutoView", &fAutoView, &sizeBool); 1529 PrfQueryProfileData(fmprof, FM3Str, "FM2Deletes", &fFM2Deletes, &sizeBool); 1530 PrfQueryProfileData(fmprof, FM3Str, "TrashCan", &fTrashCan, &sizeBool); 1616 1531 1617 1532 LoadDetailsSwitches("DirCnr", &dsDirCnrDefault); -
TabularUnified trunk/dll/init.h ¶
r1320 r1326 33 33 extern CHAR *NullStr; 34 34 extern ULONG OS2ver[2]; 35 extern ULONG sizeBool; 36 extern ULONG sizeUlong; 37 extern ULONG sizeInt; 38 extern ULONG sizePvoid; 35 39 extern PFNWP PFNWPCnr; 36 40 extern PFNWP PFNWPMLE; … … 73 77 extern BOOL fReminimize; 74 78 extern BOOL fWantFirstTimeInit; 79 extern BOOL fDrivetoSkip[26]; 75 80 extern HPOINTER hptrApp; 76 81 extern HPOINTER hptrArc; … … 94 99 extern HMTX hmtxFM2Globals; 95 100 extern HMTX hmtxFM2Delete; 96 extern HEV DriveScanStart;101 //extern HEV DriveScanStart; 97 102 98 103 #endif // INIT_H -
TabularUnified trunk/dll/mainwnd.c ¶
r1321 r1326 2913 2913 */ 2914 2914 2915 #define STATE_NAME_MAX_BYTES 2562916 2917 2915 INT SaveDirCnrState(HWND hwndClient, PSZ pszStateName) 2918 2916 { … … 2974 2972 sprintf(szKey, "%sDirCnrSort.%lu", szPrefix, numsaves); 2975 2973 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->sortFlags, 2976 size of(INT));2974 sizeInt); 2977 2975 sprintf(szKey, "%sDirCnrFilter.%lu", szPrefix, numsaves); 2978 2976 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->mask, … … 3051 3049 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeof(SWP)); 3052 3050 sprintf(szKey, "%sDirCnrSort.%lu", szPrefix, ulTemp); 3053 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, size of(INT));3051 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeInt); 3054 3052 sprintf(szKey, "%sDirCnrFilter.%lu", szPrefix, ulTemp); 3055 3053 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeof(MASK)); 3056 3054 sprintf(szKey, "%sDirCnrView.%lu", szPrefix, ulTemp); 3057 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, size of(ULONG));3055 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeUlong); 3058 3056 sprintf(szKey, "%sDirCnr.%lu.DetailsLongname", szPrefix, ulTemp); 3059 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, size of(BOOL));3057 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeBool); 3060 3058 sprintf(szKey, "%sDirCnr.%lu.DetailsSubject", szPrefix, ulTemp); 3061 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, size of(BOOL));3059 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeBool); 3062 3060 sprintf(szKey, "%sDirCnr.%lu.DetailsSize", szPrefix, ulTemp); 3063 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, size of(BOOL));3061 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeBool); 3064 3062 sprintf(szKey, "%sDirCnr.%lu.DetailsEA", szPrefix, ulTemp); 3065 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, size of(BOOL));3063 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeBool); 3066 3064 sprintf(szKey, "%sDirCnr.%lu.DetailsAttr", szPrefix, ulTemp); 3067 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, size of(BOOL));3065 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeBool); 3068 3066 sprintf(szKey, "%sDirCnr.%lu.DetailsIcon", szPrefix, ulTemp); 3069 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, size of(BOOL));3067 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeBool); 3070 3068 sprintf(szKey, "%sDirCnr.%lu.DetailsLWDate", szPrefix, ulTemp); 3071 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, size of(BOOL));3069 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeBool); 3072 3070 sprintf(szKey, "%sDirCnr.%lu.DetailsLWTime", szPrefix, ulTemp); 3073 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, size of(BOOL));3071 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeBool); 3074 3072 sprintf(szKey, "%sDirCnr.%lu.DetailsLADate", szPrefix, ulTemp); 3075 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, size of(BOOL));3073 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeBool); 3076 3074 sprintf(szKey, "%sDirCnr.%lu.DetailsLATime", szPrefix, ulTemp); 3077 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, size of(BOOL));3075 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeBool); 3078 3076 sprintf(szKey, "%sDirCnr.%lu.DetailsCRDate", szPrefix, ulTemp); 3079 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, size of(BOOL));3077 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeBool); 3080 3078 sprintf(szKey, "%sDirCnr.%lu.DetailsCRTime", szPrefix, ulTemp); 3081 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, size of(BOOL));3079 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, sizeBool); 3082 3080 sprintf(szKey, "%sDirCnrDir.%lu", szPrefix, ulTemp); 3083 3081 PrfWriteProfileString(fmprof, FM3Str, szKey, NULL); … … 3087 3085 sprintf(szKey, "%sNumDirsLastTime", szPrefix); 3088 3086 if (numsaves) { 3089 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & numsaves, size of(ULONG));3087 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & numsaves, sizeUlong); 3090 3088 WinQueryWindowPos(WinQueryWindow(hwndClient, QW_PARENT), &swp); 3091 3089 sprintf(szKey, "%sMySizeLastTime", szPrefix); … … 3097 3095 } 3098 3096 else if (fIsShutDownState) { 3099 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & numsaves, size of(ULONG));3097 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & numsaves, sizeUlong); 3100 3098 } 3101 3099 … … 3187 3185 PostMsg(hwndToolback, UM_SETUP2, MPVOID, MPVOID); 3188 3186 } 3189 DosWaitEventSem(DriveScanStart, 20000);3190 3187 size = (ULONG)0; 3191 3188 sprintf(szKey, "%sTargetDir", szPrefix); … … 3201 3198 FM3Str, 3202 3199 szKey, 3203 (PVOID) & 3200 (PVOID) &swpO, 3204 3201 &size) || 3205 3202 size != sizeof(SWP) || !swp.cx || !swp.cy) … … 3217 3214 size = sizeof(SWP); 3218 3215 sprintf(szKey, "%sLastTreePos", szPrefix); 3219 if (PrfQueryProfileData(fmprof, FM3Str, szKey, (PVOID) & 3216 if (PrfQueryProfileData(fmprof, FM3Str, szKey, (PVOID) &swp, &size)) { 3220 3217 if (fDeleteState) 3221 3218 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); … … 3246 3243 } 3247 3244 } 3248 size = sizeof(ULONG);3249 3245 sprintf(szKey, "%sNumDirsLastTime", szPrefix); 3250 3246 if (PrfQueryProfileData(fmprof, 3251 FM3Str, szKey, (PVOID) & numsaves, &size)) {3247 FM3Str, szKey, (PVOID) &numsaves, &sizeUlong)) { 3252 3248 if (fDeleteState) 3253 3249 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); … … 3271 3267 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 3272 3268 localdcd.ds.detailslongname = dsDirCnrDefault.detailslongname; // Set default 3273 size = sizeof(BOOL);3274 3269 sprintf(szKey, "%sDirCnr.%lu.DetailsLongname", szPrefix, x); 3275 3270 if (PrfQueryProfileData(fmprof, 3276 3271 FM3Str, 3277 3272 szKey, 3278 (PVOID)&localdcd.ds.detailslongname, 3279 &size) && 3280 size == sizeof(BOOL)) 3273 (PVOID) &localdcd.ds.detailslongname, 3274 &sizeBool)) 3281 3275 { 3282 3276 if (fDeleteState) … … 3284 3278 } 3285 3279 localdcd.ds.detailssubject = dsDirCnrDefault.detailssubject; // Set default 3286 size = sizeof(BOOL);3287 3280 sprintf(szKey, "%sDirCnr.%lu.DetailsSubject", szPrefix, x); 3288 3281 if (PrfQueryProfileData(fmprof, 3289 3282 FM3Str, 3290 3283 szKey, 3291 (PVOID)&localdcd.ds.detailssubject, 3292 &size) && 3293 size == sizeof(BOOL)) 3284 (PVOID) &localdcd.ds.detailssubject, 3285 &sizeBool)) 3294 3286 { 3295 3287 if (fDeleteState) … … 3297 3289 } 3298 3290 localdcd.ds.detailsea = dsDirCnrDefault.detailsea; // Set default 3299 size = sizeof(BOOL);3300 3291 sprintf(szKey, "%sDirCnr.%lu.DetailsEA", szPrefix, x); 3301 3292 if (PrfQueryProfileData(fmprof, 3302 3293 FM3Str, 3303 3294 szKey, 3304 (PVOID) & localdcd.ds.detailsea, 3305 &size) && 3306 size == sizeof(BOOL)) 3295 (PVOID) &localdcd.ds.detailsea, 3296 &sizeBool)) 3307 3297 { 3308 3298 if (fDeleteState) … … 3310 3300 } 3311 3301 localdcd.ds.detailssize = dsDirCnrDefault.detailssize; // Set default 3312 size = sizeof(BOOL);3313 3302 sprintf(szKey, "%sDirCnr.%lu.DetailsSize", szPrefix, x); 3314 3303 if (PrfQueryProfileData(fmprof, 3315 3304 FM3Str, 3316 3305 szKey, 3317 (PVOID) & localdcd.ds.detailssize, 3318 &size) && 3319 size == sizeof(BOOL)) 3306 (PVOID) &localdcd.ds.detailssize, 3307 &sizeBool)) 3320 3308 { 3321 3309 if (fDeleteState) … … 3323 3311 } 3324 3312 localdcd.ds.detailsicon = dsDirCnrDefault.detailsicon; // Set default 3325 size = sizeof(BOOL);3326 3313 sprintf(szKey, "%sDirCnr.%lu.DetailsIcon", szPrefix, x); 3327 3314 if (PrfQueryProfileData(fmprof, 3328 3315 FM3Str, 3329 3316 szKey, 3330 (PVOID) & localdcd.ds.detailsicon, 3331 &size) && 3332 size == sizeof(BOOL)) 3317 (PVOID) &localdcd.ds.detailsicon, 3318 &sizeBool)) 3333 3319 { 3334 3320 if (fDeleteState) … … 3336 3322 } 3337 3323 localdcd.ds.detailsattr = dsDirCnrDefault.detailsattr; // Set default 3338 size = sizeof(BOOL);3339 3324 sprintf(szKey, "%sDirCnr.%lu.DetailsAttr", szPrefix, x); 3340 3325 if (PrfQueryProfileData(fmprof, 3341 3326 FM3Str, 3342 3327 szKey, 3343 (PVOID)&localdcd.ds.detailsattr, 3344 &size) && 3345 size == sizeof(BOOL)) 3328 (PVOID) &localdcd.ds.detailsattr, 3329 &sizeBool)) 3346 3330 { 3347 3331 if (fDeleteState) … … 3349 3333 } 3350 3334 localdcd.ds.detailscrdate = dsDirCnrDefault.detailscrdate; // Set default 3351 size = sizeof(BOOL);3352 3335 sprintf(szKey, "%sDirCnr.%lu.DetailsCRDate", szPrefix, x); 3353 3336 if (PrfQueryProfileData(fmprof, 3354 3337 FM3Str, 3355 3338 szKey, 3356 (PVOID) & 3357 &size) && size == sizeof(BOOL))3339 (PVOID) &localdcd.ds.detailscrdate, 3340 &sizeBool)) 3358 3341 { 3359 3342 if (fDeleteState) … … 3361 3344 } 3362 3345 localdcd.ds.detailscrtime = dsDirCnrDefault.detailscrtime; // Set default 3363 size = sizeof(BOOL);3364 3346 sprintf(szKey, "%sDirCnr.%lu.DetailsCRTime", szPrefix, x); 3365 3347 if (PrfQueryProfileData(fmprof, 3366 3348 FM3Str, 3367 3349 szKey, 3368 (PVOID)&localdcd.ds.detailscrtime, 3369 &size) && 3370 size == sizeof(BOOL)) 3350 (PVOID) &localdcd.ds.detailscrtime, 3351 &sizeBool)) 3371 3352 { 3372 3353 if (fDeleteState) … … 3374 3355 } 3375 3356 localdcd.ds.detailslwdate = dsDirCnrDefault.detailslwdate; // Set default 3376 size = sizeof(BOOL);3377 3357 sprintf(szKey, "%sDirCnr.%lu.DetailsLWDate", szPrefix, x); 3378 3358 if (PrfQueryProfileData(fmprof, 3379 3359 FM3Str, 3380 3360 szKey, 3381 (PVOID) & localdcd.ds.detailslwdate, 3382 &size) && 3383 size == sizeof(BOOL)) 3361 (PVOID) &localdcd.ds.detailslwdate, 3362 &sizeBool)) 3384 3363 { 3385 3364 if (fDeleteState) … … 3387 3366 } 3388 3367 localdcd.ds.detailslwtime = dsDirCnrDefault.detailslwtime; // Set default 3389 size = sizeof(BOOL);3390 3368 sprintf(szKey, "%sDirCnr.%lu.DetailsLWTime", szPrefix, x); 3391 3369 if (PrfQueryProfileData(fmprof, 3392 3370 FM3Str, 3393 3371 szKey, 3394 (PVOID) & localdcd.ds.detailslwtime, 3395 &size) && 3396 size == sizeof(BOOL)) 3372 (PVOID) &localdcd.ds.detailslwtime, 3373 &sizeBool)) 3397 3374 { 3398 3375 if (fDeleteState) … … 3400 3377 } 3401 3378 localdcd.ds.detailsladate = dsDirCnrDefault.detailsladate; // Set default 3402 size = sizeof(BOOL);3403 3379 sprintf(szKey, "%sDirCnr.%lu.DetailsLADate", szPrefix, x); 3404 3380 if (PrfQueryProfileData(fmprof, 3405 3381 FM3Str, 3406 3382 szKey, 3407 (PVOID) & localdcd.ds.detailsladate, 3408 &size) && 3409 size == sizeof(BOOL)) 3383 (PVOID) &localdcd.ds.detailsladate, 3384 &sizeBool)) 3410 3385 { 3411 3386 if (fDeleteState) … … 3413 3388 } 3414 3389 localdcd.ds.detailslatime = dsDirCnrDefault.detailslatime; // Set default 3415 size = sizeof(BOOL);3416 3390 sprintf(szKey, "%sDirCnr.%lu.DetailsLATime", szPrefix, x); 3417 3391 if (PrfQueryProfileData(fmprof, 3418 3392 FM3Str, 3419 3393 szKey, 3420 (PVOID) & localdcd.ds.detailslatime, 3421 &size) && 3422 size == sizeof(BOOL)) 3394 (PVOID) &localdcd.ds.detailslatime, 3395 &sizeBool)) 3423 3396 { 3424 3397 if (fDeleteState) … … 3437 3410 NULL, 3438 3411 CCS_AUTOPOSITION | CCS_MINIICONS | 3439 CCS_MINIRECORDCORE | ulCnrType | 3440 WS_VISIBLE, 3412 CCS_MINIRECORDCORE | ulCnrType, //| WS_VISIBLE, 3441 3413 0, 3442 3414 0, … … 3464 3436 dcd->ds.detailslwdate = localdcd.ds.detailslwdate ; 3465 3437 dcd->ds.detailslwtime = localdcd.ds.detailslwtime ; 3466 size = sizeof(INT);3467 3438 sprintf(szKey, "%sDirCnrSort.%lu", szPrefix, x); 3468 3439 if (PrfQueryProfileData(fmprof, 3469 3440 FM3Str, 3470 3441 szKey, 3471 (PVOID) & 3472 &size ) && size == sizeof(INT)) {3442 (PVOID) &dcd->sortFlags, 3443 &sizeInt)) { 3473 3444 if (!dcd->sortFlags) 3474 3445 dcd->sortFlags = SORT_PATHNAME; … … 3481 3452 FM3Str, 3482 3453 szKey, 3483 (PVOID) & dcd->mask, &size) && size) {3454 (PVOID) &dcd->mask, &size)) { 3484 3455 if (*dcd->mask.szMask) 3485 3456 WinSendMsg(WinWindowFromID(hwndC, DIR_CNR), … … 3489 3460 if (fDeleteState) 3490 3461 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 3491 size = sizeof(ULONG);3492 3462 sprintf(szKey, "%sDirCnrView.%lu", szPrefix, x); 3493 3463 if (!noview) { … … 3495 3465 FM3Str, 3496 3466 szKey, 3497 (PVOID) & 3498 &size ) && size == sizeof(ULONG)) {3467 (PVOID) &dcd->flWindowAttr, 3468 &sizeUlong)) { 3499 3469 3500 3470 CNRINFO cnri; … … 3545 3515 } // for 3546 3516 if (hwndPPSave) { 3547 3548 3517 SavePresParams(hwndPPSave, "DirCnr"); 3518 WinDestroyWindow(hwndPPSave); 3549 3519 } 3550 3520 } -
TabularUnified trunk/dll/mainwnd.h ¶
r1224 r1326 83 83 extern USHORT shiftstate; 84 84 85 #define STATE_NAME_MAX_BYTES 256 86 85 87 #endif // MAINWND_H -
TabularUnified trunk/dll/treecnr.c ¶
r1320 r1326 802 802 Runtime_Error2(pszSrcFile, __LINE__, IDS_NODATATEXT); 803 803 else { 804 PULONG pulPostCt;804 //PULONG pulPostCt; 805 805 806 806 RemoveCnrItems(dcd->hwndCnr, NULL, 0, CMA_FREE | CMA_INVALIDATE | CMA_ERASE); … … 810 810 CM_SCROLLWINDOW, 811 811 MPFROMSHORT(CMA_HORIZONTAL), MPFROMLONG(-1)); 812 if (!fInitialDriveScan) { 813 DosWaitEventSem(DriveScanStart, 20000); 814 pulPostCt = xmallocz(sizeof(ULONG), pszSrcFile, __LINE__); 812 //if (!fInitialDriveScan) { 813 //DosWaitEventSem(DriveScanStart, 20000); 814 while (StubbyScanCount != 0) 815 DosSleep(50); 816 /*pulPostCt = xmallocz(sizeof(ULONG), pszSrcFile, __LINE__); 815 817 if (pulPostCt) { 816 818 DosResetEventSem(DriveScanStart, pulPostCt); 817 819 free(pulPostCt); 818 } 819 }820 else821 fInitialDriveScan = FALSE;820 } */ 821 //} 822 //else 823 // fInitialDriveScan = FALSE; 822 824 FillTreeCnr(dcd->hwndCnr, dcd->hwndParent); 823 825 if (fOkayMinimize) { -
TabularUnified trunk/dll/update.c ¶
r1318 r1326 189 189 dcd->ullTotalBytes += ullTotalBytes; 190 190 PostMsg(hwndCnr, UM_RESCAN, MPVOID, MPVOID); 191 if (pci->attrFile & FILE_DIRECTORY) 192 Stubby(hwndCnr, pci); 191 if (pci->attrFile & FILE_DIRECTORY) { 192 if (fInitialDriveScan) 193 Stubby(hwndCnr, pci); 194 else { 195 while (StubbyScanCount != 0) 196 DosSleep(50); 197 Stubby(hwndCnr, pci); 198 } 199 } 193 200 } 194 201 } … … 282 289 if (dcd->type == DIR_FRAME) { 283 290 dcd->ullTotalBytes += ullTotalBytes; 284 } 285 Stubby(hwndCnr, pci); 291 } 292 if (fInitialDriveScan) 293 Stubby(hwndCnr, pci); 294 else { 295 while (StubbyScanCount != 0) 296 DosSleep(50); 297 Stubby(hwndCnr, pci); 298 } 286 299 } 287 300 } … … 450 463 } 451 464 repos = TRUE; 452 if (pci->attrFile & FILE_DIRECTORY) 453 Stubby(hwndCnr, pci); 465 if (pci->attrFile & FILE_DIRECTORY) { 466 if (fInitialDriveScan) 467 Stubby(hwndCnr, pci); 468 else { 469 while (StubbyScanCount != 0) 470 DosSleep(50); 471 Stubby(hwndCnr, pci); 472 } 473 } 454 474 } 455 475 else … … 548 568 dcd->ullTotalBytes += ullTotalBytes; 549 569 } 550 repos = TRUE; 551 Stubby(hwndCnr, pci); 570 repos = TRUE; 571 if (fInitialDriveScan) 572 Stubby(hwndCnr, pci); 573 else { 574 while (StubbyScanCount != 0) 575 DosSleep(50); 576 Stubby(hwndCnr, pci); 577 } 552 578 } 553 579 else
Note:
See TracChangeset
for help on using the changeset viewer.