Changeset 1664 for trunk/dll/init.c
- Timestamp:
- Aug 5, 2012, 2:11:07 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/init.c
r1654 r1664 109 109 22 Oct 11 GKY Thread notes dialog now reopens on startup if it was open on shutdown. 110 110 08 Jan 12 GKY Add support for changing PresParams in the notify status window 111 04 Aug 12 GKY Changes to use Unlock to unlock files if Unlock.exe is in path both from menu/toolbar and as part of 112 copy, move and delete operations 113 04 Aug 12 GKY Changes to allow copy and move over readonly files with a warning dialog; also added a warning dialog 114 for delete of readonly files 111 115 112 116 ***********************************************************************/ … … 267 271 PCSZ PCSZ_FDISKPMEXE = "FDISKPM.EXE"; 268 272 PCSZ PCSZ_LVMEXE = "LVM.EXE"; 273 PCSZ PCSZ_UNLOCKEXE = "UNLOCK.EXE"; 269 274 PCSZ PCSZ_ARCCNR = "ArcCnr"; 270 275 PCSZ PCSZ_COLLECTOR = "Collector"; … … 1163 1168 fAutoAddDirs = fUseNewViewer = fDataToFore = fDataShowDrives = fDataMin = 1164 1169 fSplitStatus = fDragndropDlg = fQuickArcFind = fKeepCmdLine = 1165 fMoreButtons = fDrivebar = fCollapseFirst = fSwitchTree = 1170 fMoreButtons = fDrivebar = fCollapseFirst = fSwitchTree = fWarnReadOnly = 1166 1171 fSwitchTreeExpand = fNoSearch = fCustomFileDlg = fOtherHelp = 1167 1172 fSaveMiniCmds = fUserComboBox = fFM2Deletes = fConfirmTarget = … … 1221 1226 if (!xDosQueryAppType(PCSZ_LVMEXE, &ulAppType)) 1222 1227 fLVM = TRUE; 1228 1229 //Check for unlock.exe 1230 if (!xDosQueryAppType(PCSZ_UNLOCKEXE, &ulAppType)) 1231 fUnlock = TRUE; 1223 1232 1224 1233 // Check to see if we are running protect only … … 1493 1502 size = sizeof(BOOL); 1494 1503 PrfQueryProfileData(fmprof, appname, "LinkSetsIcon", &fLinkSetsIcon, &size); 1504 size = sizeof(BOOL); 1505 PrfQueryProfileData(fmprof, appname, "WarnReadOnly", &fWarnReadOnly, &size); 1495 1506 size = sizeof(INT); 1496 1507 PrfQueryProfileData(fmprof, appname, "Sort", &sortFlags, &size);
Note:
See TracChangeset
for help on using the changeset viewer.