Changeset 1482 for trunk/dll/killproc.c


Ignore:
Timestamp:
Dec 13, 2009, 8:59:47 PM (16 years ago)
Author:
Gregg Young
Message:

Fixed separate parameters; added the ability to set it either globally or for just one app; some files only contain white space changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/killproc.c

    r1480 r1482  
    2222  08 Mar 09 GKY Removed variable aurguments from docopyf and unlinkf (not used)
    2323  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
    2429
    2530***********************************************************************/
     
    383388    case KILL_CHECKBOX:
    384389      fUseQProcStat = WinQueryButtonCheckstate(hwnd, KILL_CHECKBOX);
    385       PrfWriteProfileData(fmprof,
    386                           FM3Str,
    387                           "UseQProcStat", &fUseQProcStat, sizeof(BOOL));
     390      PrfWriteProfileData(fmprof, FM3Str, "UseQProcStat",
     391                          &fUseQProcStat, sizeof(BOOL));
    388392      PostMsg(hwnd, WM_COMMAND, MPFROM2SHORT(KILL_RESCAN, 0), MPVOID);
    389393      if (WinQueryButtonCheckstate(hwnd, KILL_CHECKBOX)) {
     
    396400    case KILL2_CHECKBOX:
    397401      fUseQSysState = WinQueryButtonCheckstate(hwnd, KILL2_CHECKBOX);
    398       PrfWriteProfileData(fmprof,
    399                           FM3Str,
    400                           "UseQSysState", &fUseQSysState, sizeof(BOOL));
     402      PrfWriteProfileData(fmprof, FM3Str, "UseQSysState",
     403                          &fUseQSysState, sizeof(BOOL));
    401404      PostMsg(hwnd, WM_COMMAND, MPFROM2SHORT(KILL_RESCAN, 0), MPVOID);
    402405      if (WinQueryButtonCheckstate(hwnd, KILL2_CHECKBOX)) {
Note: See TracChangeset for help on using the changeset viewer.