Changeset 40644 in vbox
- Timestamp:
- Mar 26, 2012 1:21:14 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77074
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r40636 r40644 1329 1329 /** @} */ 1330 1330 1331 /** @name Ring-0 module entry points. 1332 * 1333 * These can be exported by ring-0 modules SUP are told to load. 1334 * 1335 * @{ */ 1336 DECLEXPORT(int) ModuleInit(void *hMod); 1337 DECLEXPORT(void) ModuleTerm(void *hMod); 1338 /** @} */ 1339 1340 1331 1341 /** @} */ 1332 1342 #endif 1333 1343 1344 1334 1345 /** @} */ 1335 1346 -
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r40636 r40644 65 65 *******************************************************************************/ 66 66 RT_C_DECLS_BEGIN 67 VMMR0DECL(int) ModuleInit(void *hMod);68 VMMR0DECL(void) ModuleTerm(void *hMod);69 70 67 #if defined(RT_ARCH_X86) && (defined(RT_OS_SOLARIS) || defined(RT_OS_FREEBSD)) 71 68 extern uint64_t __udivdi3(uint64_t, uint64_t); … … 106 103 * @param hMod Image handle for use in APIs. 107 104 */ 108 VMMR0DECL(int) ModuleInit(void *hMod)105 DECLEXPORT(int) ModuleInit(void *hMod) 109 106 { 110 107 #ifdef VBOX_WITH_DTRACE_R0 … … 201 198 * @param hMod Image handle for use in APIs. 202 199 */ 203 VMMR0DECL(void) ModuleTerm(void *hMod)200 DECLEXPORT(void) ModuleTerm(void *hMod) 204 201 { 205 202 LogFlow(("ModuleTerm:\n"));
Note:
See TracChangeset
for help on using the changeset viewer.