Ignore:
Timestamp:
Aug 30, 2002, 1:21:47 AM (23 years ago)
Author:
umoeller
Message:

Misc changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/dosh.c

    r201 r217  
    37493749
    37503750        // resolve DosPerfSysCall API entry
    3751         if (!(arc = DosLoadModule(NULL, 0, "DOSCALLS", &pPerfSys->hmod)))
     3751        if (!(arc = DosLoadModule(NULL,
     3752                                  0,
     3753                                  "DOSCALLS",
     3754                                  &pPerfSys->hmod)))
    37523755        {
    37533756            if (!(arc = DosQueryProcAddr(pPerfSys->hmod,
    37543757                                         976,
    37553758                                         "DosPerfSysCall",
    3756                                          (PFN*)(&pPerfSys->pDosPerfSysCall))))
     3759                                         (PFN*)&pPerfSys->pDosPerfSysCall)))
    37573760            {
    37583761                // OK, we got the API: initialize!
    3759                 if (!(arc = pPerfSys->pDosPerfSysCall(CMD_KI_ENABLE, 0, 0, 0)))
     3762                if (!(arc = pPerfSys->pDosPerfSysCall(CMD_KI_ENABLE,
     3763                                                      0,
     3764                                                      0,
     3765                                                      0)))
    37603766                {
    37613767                    pPerfSys->fInitialized = TRUE;
     
    37643770                    if (!(arc = pPerfSys->pDosPerfSysCall(CMD_PERF_INFO,
    37653771                                                          0,
    3766                                                           (ULONG)(&pPerfSys->cProcessors),
     3772                                                          (ULONG)&pPerfSys->cProcessors,
    37673773                                                          0)))
    37683774                    {
Note: See TracChangeset for help on using the changeset viewer.