Changeset 1030 for trunk/dll/misc.c
- Timestamp:
- Jun 26, 2008, 6:59:57 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/misc.c
r1028 r1030 1236 1236 strcat(s, "."); 1237 1237 eos = &s[strlen(s)]; 1238 strcat( eos, "DetailsLongname");1238 strcat(s, "DetailsLongname"); 1239 1239 if (dcd) 1240 1240 bool = &dcd->detailslongname; … … 1244 1244 size = sizeof(BOOL); 1245 1245 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1246 strc at(eos, "DetailsSubject");1246 strcpy(eos, "DetailsSubject"); 1247 1247 if (dcd) 1248 1248 bool = &dcd->detailssubject; … … 1252 1252 size = sizeof(BOOL); 1253 1253 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1254 strc at(eos, "DetailsEA");1254 strcpy(eos, "DetailsEA"); 1255 1255 if (dcd) 1256 1256 bool = &dcd->detailsea; … … 1260 1260 size = sizeof(BOOL); 1261 1261 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1262 strc at(eos, "DetailsSize");1262 strcpy(eos, "DetailsSize"); 1263 1263 if (dcd) 1264 1264 bool = &dcd->detailssize; … … 1268 1268 size = sizeof(BOOL); 1269 1269 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1270 strc at(eos, "DetailsIcon");1270 strcpy(eos, "DetailsIcon"); 1271 1271 if (dcd) 1272 1272 bool = &dcd->detailsicon; … … 1276 1276 size = sizeof(BOOL); 1277 1277 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1278 strc at(eos, "DetailsAttr");1278 strcpy(eos, "DetailsAttr"); 1279 1279 if (dcd) 1280 1280 bool = &dcd->detailsattr; … … 1284 1284 size = sizeof(BOOL); 1285 1285 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1286 strc at(eos, "DetailsCRDate");1286 strcpy(eos, "DetailsCRDate"); 1287 1287 if (dcd) 1288 1288 bool = &dcd->detailscrdate; … … 1292 1292 size = sizeof(BOOL); 1293 1293 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1294 strc at(eos, "DetailsCRTime");1294 strcpy(eos, "DetailsCRTime"); 1295 1295 if (dcd) 1296 1296 bool = &dcd->detailscrtime; … … 1300 1300 size = sizeof(BOOL); 1301 1301 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1302 strc at(eos, "DetailsLWDate");1302 strcpy(eos, "DetailsLWDate"); 1303 1303 if (dcd) 1304 1304 bool = &dcd->detailslwdate; … … 1308 1308 size = sizeof(BOOL); 1309 1309 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1310 strc at(eos, "DetailsLWTime");1310 strcpy(eos, "DetailsLWTime"); 1311 1311 if (dcd) 1312 1312 bool = &dcd->detailslwtime; … … 1316 1316 size = sizeof(BOOL); 1317 1317 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1318 strc at(eos, "DetailsLADate");1318 strcpy(eos, "DetailsLADate"); 1319 1319 if (dcd) 1320 1320 bool = &dcd->detailsladate; … … 1324 1324 size = sizeof(BOOL); 1325 1325 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1326 strc at(eos, "DetailsLATime");1326 strcpy(eos, "DetailsLATime"); 1327 1327 if (dcd) 1328 1328 bool = &dcd->detailslatime; … … 1332 1332 size = sizeof(BOOL); 1333 1333 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1334 strc at(eos, "SubjectInLeftPane");1334 strcpy(eos, "SubjectInLeftPane"); 1335 1335 if (dcd) 1336 1336 bool = &dcd->fSubjectInLeftPane; … … 1340 1340 size = sizeof(BOOL); 1341 1341 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1342 strc at(eos, "SubjectLengthMax");1342 strcpy(eos, "SubjectLengthMax"); 1343 1343 if (dcd) 1344 1344 bool = &dcd->fSubjectLengthMax; … … 1352 1352 dcd->SubjectDisplayWidth = 0; 1353 1353 else { 1354 strc at(eos, "SubjectDisplayWidth");1354 strcpy(eos, "SubjectDisplayWidth"); 1355 1355 bool = &dcd->SubjectDisplayWidth; 1356 1356 *bool = SubjectDisplayWidth; … … 1367 1367 SubjectDisplayWidth = 0; 1368 1368 else { 1369 strc at(eos, "SubjectDisplayWidth");1369 strcpy(eos, "SubjectDisplayWidth"); 1370 1370 bool = &SubjectDisplayWidth; 1371 1371 *bool = SubjectDisplayWidth;
Note:
See TracChangeset
for help on using the changeset viewer.