Changeset 74638 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Oct 6, 2018 6:31:59 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 125528
- Location:
- trunk/src/VBox/Runtime/r3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/ldrNative-posix.cpp
r74253 r74638 42 42 43 43 44 intrtldrNativeLoad(const char *pszFilename, uintptr_t *phHandle, uint32_t fFlags, PRTERRINFO pErrInfo)44 DECLHIDDEN(int) rtldrNativeLoad(const char *pszFilename, uintptr_t *phHandle, uint32_t fFlags, PRTERRINFO pErrInfo) 45 45 { 46 46 /* … … 126 126 127 127 128 intrtldrNativeLoadSystem(const char *pszFilename, const char *pszExt, uint32_t fFlags, PRTLDRMOD phLdrMod)128 DECLHIDDEN(int) rtldrNativeLoadSystem(const char *pszFilename, const char *pszExt, uint32_t fFlags, PRTLDRMOD phLdrMod) 129 129 { 130 130 RT_NOREF_PV(pszFilename); RT_NOREF_PV(pszExt); RT_NOREF_PV(fFlags); RT_NOREF_PV(phLdrMod); -
trunk/src/VBox/Runtime/r3/win/ldrNative-win.cpp
r74460 r74638 56 56 57 57 58 intrtldrNativeLoad(const char *pszFilename, uintptr_t *phHandle, uint32_t fFlags, PRTERRINFO pErrInfo)58 DECLHIDDEN(int) rtldrNativeLoad(const char *pszFilename, uintptr_t *phHandle, uint32_t fFlags, PRTERRINFO pErrInfo) 59 59 { 60 60 Assert(sizeof(*phHandle) >= sizeof(HMODULE)); … … 176 176 177 177 178 intrtldrNativeLoadSystem(const char *pszFilename, const char *pszExt, uint32_t fFlags, PRTLDRMOD phLdrMod)178 DECLHIDDEN(int) rtldrNativeLoadSystem(const char *pszFilename, const char *pszExt, uint32_t fFlags, PRTLDRMOD phLdrMod) 179 179 { 180 180 AssertReleaseMsg(g_hModKernel32,
Note:
See TracChangeset
for help on using the changeset viewer.