Changeset 57358 in vbox for trunk/src/VBox/HostDrivers/Support/SUPLibLdr.cpp
- Timestamp:
- Aug 14, 2015 3:16:38 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102121
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLibLdr.cpp
r57004 r57358 43 43 */ 44 44 45 /******************************************************************************* 46 * Header Files * 47 *******************************************************************************/ 45 46 /********************************************************************************************************************************* 47 * Header Files * 48 *********************************************************************************************************************************/ 48 49 #define LOG_GROUP LOG_GROUP_SUP 49 50 #include <VBox/sup.h> … … 72 73 73 74 74 /******************************************************************************* 75 * Defined Constants And Macros *76 ******************************************************************************* /75 /********************************************************************************************************************************* 76 * Defined Constants And Macros * 77 *********************************************************************************************************************************/ 77 78 /** R0 VMM module name. */ 78 79 #define VMMR0_NAME "VMMR0" 79 80 80 81 81 /******************************************************************************* 82 * Structures and Typedefs *83 ******************************************************************************* /82 /********************************************************************************************************************************* 83 * Structures and Typedefs * 84 *********************************************************************************************************************************/ 84 85 typedef DECLCALLBACK(int) FNCALLVMMR0(PVMR0 pVMR0, unsigned uOperation, void *pvArg); 85 86 typedef FNCALLVMMR0 *PFNCALLVMMR0; 86 87 87 88 88 /******************************************************************************* 89 * Global Variables *90 ******************************************************************************* /89 /********************************************************************************************************************************* 90 * Global Variables * 91 *********************************************************************************************************************************/ 91 92 /** VMMR0 Load Address. */ 92 93 static RTR0PTR g_pvVMMR0 = NIL_RTR0PTR; 93 94 94 95 95 /******************************************************************************* 96 * Internal Functions *97 ******************************************************************************* /96 /********************************************************************************************************************************* 97 * Internal Functions * 98 *********************************************************************************************************************************/ 98 99 static int supLoadModule(const char *pszFilename, const char *pszModule, const char *pszSrvReqHandler, 99 100 PRTERRINFO pErrInfo, void **ppvImageBase);
Note:
See TracChangeset
for help on using the changeset viewer.