Ignore:
Timestamp:
Aug 25, 2007, 5:46:14 AM (18 years ago)
Author:
bird
Message:

errors and stuff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kStuff/kDbg/kDbgModWinDbgHelp.cpp

    r3537 r3541  
    9292    {
    9393        case 0:                     return 0;
    94         default:                    return KDBG_ERR_GENERAL_FAILURE;
     94        default:                    return KERR_GENERAL_FAILURE;
    9595    }
    9696}
     
    323323            }
    324324            else
    325                 rc = KDBG_ERR_GENERAL_FAILURE;
     325                rc = KERR_GENERAL_FAILURE;
    326326        }
    327327        else
     
    344344    uint32_t FileVersionMS = 0;
    345345    uint32_t FileVersionLS = 0;
    346     int rc = KDBG_ERR_GENERAL_FAILURE;
     346    int rc = KERR_GENERAL_FAILURE;
    347347    static char s_szDbgHelp[] = "\\dbghelp.dll";
    348348    if (GetCurrentDirectory((DWORD)(cchPath - sizeof(s_szDbgHelp) + 1), pszPath))
     
    597597     */
    598598    PKDBGMODDBGHELP pModDH = (PKDBGMODDBGHELP)kDbgHlpAlloc(KDBG_OFFSETOF(KDBGMODDBGHELP, aSections[FHdr.NumberOfSections + 2]));
    599     kDbgAssertReturn(pModDH, KDBG_ERR_NO_MEMORY);
     599    kDbgAssertReturn(pModDH, KERR_NO_MEMORY);
    600600    pModDH->Core.u32Magic   = KDBGMOD_MAGIC;
    601601    pModDH->Core.pOps       = &g_kdbgModDHOps;
Note: See TracChangeset for help on using the changeset viewer.