Changeset 15558 in vbox for trunk/src/recompiler_new
- Timestamp:
- Dec 16, 2008 1:07:52 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 41060
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/VBoxREMWrapper.cpp
r15322 r15558 1971 1971 * Load the VBoxREM32/64 object/DLL. 1972 1972 */ 1973 int rc = SUPR3HardenedLdrLoadAppPriv(remIs64bitEnabled(pVM) ? "VBoxREM64" : "VBoxREM32", &g_ModREM2); 1973 const char *pszModule = remIs64bitEnabled(pVM) ? "VBoxREM64" : "VBoxREM32"; 1974 int rc = SUPR3HardenedLdrLoadAppPriv(pszModule, &g_ModREM2); 1974 1975 if (RT_SUCCESS(rc)) 1975 1976 { 1977 LogRel(("REM: %s\n", pszModule)); 1978 1976 1979 /* 1977 1980 * Resolve exports.
Note:
See TracChangeset
for help on using the changeset viewer.