VirtualBox

Ignore:
Timestamp:
Nov 5, 2008 2:34:43 AM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
38826
Message:

s/VBOX_SUCCESS/RT_SUCCESS/g s/VBOX_FAILURE/RT_FAILURE/g - VBOX_SUCCESS and VBOX_FAILURE have *NOT* been retired (because old habbits die hard) just sligtly deprecated.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler/VBoxREMWrapper.cpp

    r13791 r13835  
    18221822    strcpy(&szPath[offFilename], "/VBoxREM2.rel");
    18231823    rc = RTLdrOpen(szPath, &g_ModREM2);
    1824     if (VBOX_SUCCESS(rc))
     1824    if (RT_SUCCESS(rc))
    18251825    {
    18261826        g_pvREM2 = RTMemExecAlloc(RTLdrSize(g_ModREM2));
     
    18341834                    szPath, g_pvREM2, RTLdrSize(g_ModREM2), szPath, g_pvREM2));
    18351835            rc = RTLdrGetBits(g_ModREM2, g_pvREM2, (RTUINTPTR)g_pvREM2, remGetImport, NULL);
    1836             if (VBOX_SUCCESS(rc))
     1836            if (RT_SUCCESS(rc))
    18371837            {
    18381838                /*
     
    18451845                    rc = RTLdrGetSymbolEx(g_ModREM2, g_pvREM2, (RTUINTPTR)g_pvREM2, g_aExports[i].pszName, &Value);
    18461846                    AssertMsgRC(rc, ("%s rc=%Vrc\n", g_aExports[i].pszName, rc));
    1847                     if (VBOX_FAILURE(rc))
     1847                    if (RT_FAILURE(rc))
    18481848                        break;
    18491849                    rc = remGenerateExportGlue(&Value, &g_aExports[i]);
    1850                     if (VBOX_FAILURE(rc))
     1850                    if (RT_FAILURE(rc))
    18511851                        break;
    18521852                    *(void **)g_aExports[i].pv = (void *)(uintptr_t)Value;
     
    19101910    {
    19111911        int rc = remLoadLinuxObj();
    1912         if (VBOX_FAILURE(rc))
     1912        if (RT_FAILURE(rc))
    19131913            return rc;
    19141914    }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette