Changeset 1711 for trunk/dll/init.c
- Timestamp:
- Feb 9, 2014, 11:22:11 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/init.c
r1710 r1711 113 113 04 Aug 12 GKY Changes to allow copy and move over readonly files with a warning dialog; also added a warning dialog 114 114 for delete of readonly files 115 09 Feb 14 GKY Fix separate parameters. Moved to general page renamed separate settings 116 for apps. 115 117 116 118 ***********************************************************************/ … … 659 661 CHAR *p; 660 662 ULONG size; 661 BOOL fSeparateParmsApp;662 663 663 664 strcpy(dllfile, PCSZ_FM3RES); … … 949 950 FindSwapperDat(); 950 951 951 size = sizeof(BOOL);952 PrfQueryProfileData(fmprof, FM3Str, "SeparateParms",953 &fSeparateParms, &size);954 size = sizeof(BOOL);955 PrfQueryProfileData(fmprof, appname, "SeparateParms",956 &fSeparateParmsApp, &size);957 if (!fSeparateParms && !fSeparateParmsApp)958 strcpy(appname, FM3Str);959 960 952 // start help 961 953 memset(&hini, 0, sizeof(HELPINIT)); … … 1258 1250 * one or more miniapp but not to FM/2 1259 1251 */ 1252 size = sizeof(BOOL); 1253 PrfQueryProfileData(fmprof, realappname, "AppSeparateSettings", &fAppSeparateSettings, &size); 1254 if (!fAppSeparateSettings) 1255 strcpy(appname, FM3Str); 1256 else 1257 strcpy(appname, realappname); 1260 1258 size = sizeof(ULONG); 1261 1259 PrfQueryProfileData(fmprof, appname, "MaxComLineStrg", &MaxComLineStrg, &size);
Note:
See TracChangeset
for help on using the changeset viewer.