Changeset 1482 for trunk/dll/killproc.c
- Timestamp:
- Dec 13, 2009, 8:59:47 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/killproc.c
r1480 r1482 22 22 08 Mar 09 GKY Removed variable aurguments from docopyf and unlinkf (not used) 23 23 12 Jul 09 GKY Add xDosQueryAppType and xDosAlloc... to allow FM/2 to load in high memory 24 13 Dec 09 GKY Fixed separate paramenters. Please note that appname should be used in 25 profile calls for user settings that work and are setable in more than one 26 miniapp; FM3Str should be used for setting only relavent to FM/2 or that 27 aren't user settable; realappname should be used for setting applicable to 28 one or more miniapp but not to FM/2 24 29 25 30 ***********************************************************************/ … … 383 388 case KILL_CHECKBOX: 384 389 fUseQProcStat = WinQueryButtonCheckstate(hwnd, KILL_CHECKBOX); 385 PrfWriteProfileData(fmprof, 386 FM3Str, 387 "UseQProcStat", &fUseQProcStat, sizeof(BOOL)); 390 PrfWriteProfileData(fmprof, FM3Str, "UseQProcStat", 391 &fUseQProcStat, sizeof(BOOL)); 388 392 PostMsg(hwnd, WM_COMMAND, MPFROM2SHORT(KILL_RESCAN, 0), MPVOID); 389 393 if (WinQueryButtonCheckstate(hwnd, KILL_CHECKBOX)) { … … 396 400 case KILL2_CHECKBOX: 397 401 fUseQSysState = WinQueryButtonCheckstate(hwnd, KILL2_CHECKBOX); 398 PrfWriteProfileData(fmprof, 399 FM3Str, 400 "UseQSysState", &fUseQSysState, sizeof(BOOL)); 402 PrfWriteProfileData(fmprof, FM3Str, "UseQSysState", 403 &fUseQSysState, sizeof(BOOL)); 401 404 PostMsg(hwnd, WM_COMMAND, MPFROM2SHORT(KILL_RESCAN, 0), MPVOID); 402 405 if (WinQueryButtonCheckstate(hwnd, KILL2_CHECKBOX)) {
Note:
See TracChangeset
for help on using the changeset viewer.