Changeset 34959 in vbox for trunk/include/VBox
- Timestamp:
- Dec 10, 2010 3:17:31 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 68779
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r34241 r34959 1036 1036 * 1037 1037 * @returns iprt status code. 1038 * @param pszFilename Image filename. This must have a path. 1039 * @param phLdrMod Where to store the handle to the loaded module. 1040 */ 1041 SUPR3DECL(int) SUPR3HardenedLdrLoad(const char *pszFilename, PRTLDRMOD phLdrMod); 1038 * @param pszFilename Image filename. This must have a path. 1039 * @param phLdrMod Where to store the handle to the loaded module. 1040 * @param pszError Where to return error message on failure. 1041 * @param cbError The size of the error buffer. 1042 */ 1043 SUPR3DECL(int) SUPR3HardenedLdrLoad(const char *pszFilename, PRTLDRMOD phLdrMod, char *pszError, size_t cbError); 1042 1044 1043 1045 /** … … 1051 1053 * @param pszFilename Image filename. 1052 1054 * @param phLdrMod Where to store the handle to the loaded module. 1053 */ 1054 SUPR3DECL(int) SUPR3HardenedLdrLoadAppPriv(const char *pszFilename, PRTLDRMOD phLdrMod); 1055 * @param pszError Where to return error message on failure. 1056 * @param cbError The size of the error buffer. 1057 */ 1058 SUPR3DECL(int) SUPR3HardenedLdrLoadAppPriv(const char *pszFilename, PRTLDRMOD phLdrMod, char *pszError, size_t cbError); 1055 1059 1056 1060 /**
Note:
See TracChangeset
for help on using the changeset viewer.