Changeset 1753 for trunk/dll/init.c
- Timestamp:
- Mar 2, 2014, 7:58:53 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/init.c
r1750 r1753 126 126 01 Mar 14 JBS Ticket #524: Made "searchapath" thread-safe. Function names and signatures were changed. 127 127 So calls to these functions had to be changed. 128 02 Mar 14 GKY Fixed typo that reversed the function of the saymsg dialog g/bzip check. 129 Added option to suppress message regarding missing bzip2.exe 130 or gzip.exe on TAR.B/GZ archives. 128 131 129 132 ***********************************************************************/ … … 245 248 BOOL fWantFirstTimeInit; 246 249 BOOL fUseShellEnv; 250 BOOL fDontAskBzip; 251 BOOL fDontAskGzip; 247 252 //BOOL fDrivetoSkip[26]; 248 253 HPOINTER hptrApp; … … 1620 1625 if (fThreadNotes) 1621 1626 ShowNote(); 1627 size = sizeof(BOOL); 1628 PrfQueryProfileData(fmprof, FM3Str, "DontAskBzip", &fDontAskBzip, &size); 1629 size = sizeof(BOOL); 1630 PrfQueryProfileData(fmprof, FM3Str, "DontAskGzip", &fDontAskGzip, &size); 1622 1631 1623 1632 LoadDetailsSwitches(PCSZ_DIRCNR, &dsDirCnrDefault, FALSE);
Note:
See TracChangeset
for help on using the changeset viewer.