Changeset 20374 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Jun 8, 2009 12:43:21 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 48298
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.h
r20365 r20374 32 32 #include <VBox/hwacc_svm.h> 33 33 34 RT_ BEGIN_DECLS34 RT_C_DECLS_BEGIN 35 35 36 36 /** @defgroup grp_svm_int Internal … … 224 224 /** @} */ 225 225 226 RT_ END_DECLS226 RT_C_DECLS_END 227 227 228 228 #endif -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.h
r20365 r20374 32 32 #include <VBox/hwacc_vmx.h> 33 33 34 RT_ BEGIN_DECLS34 RT_C_DECLS_BEGIN 35 35 36 36 /** @defgroup grp_vmx_int Internal … … 368 368 /** @} */ 369 369 370 RT_ END_DECLS370 RT_C_DECLS_END 371 371 372 372 #endif -
trunk/src/VBox/VMM/VMMR0/PDMR0Device.cpp
r20365 r20374 45 45 * Global Variables * 46 46 *******************************************************************************/ 47 RT_ BEGIN_DECLS47 RT_C_DECLS_BEGIN 48 48 extern DECLEXPORT(const PDMDEVHLPR0) g_pdmR0DevHlp; 49 49 extern DECLEXPORT(const PDMPICHLPR0) g_pdmR0PicHlp; … … 51 51 extern DECLEXPORT(const PDMIOAPICHLPR0) g_pdmR0IoApicHlp; 52 52 extern DECLEXPORT(const PDMPCIHLPR0) g_pdmR0PciHlp; 53 RT_ END_DECLS53 RT_C_DECLS_END 54 54 55 55 -
trunk/src/VBox/VMM/VMMR0/PGMR0.cpp
r20365 r20374 31 31 #include <iprt/assert.h> 32 32 33 RT_ BEGIN_DECLS33 RT_C_DECLS_BEGIN 34 34 #define PGM_BTH_NAME(name) PGM_BTH_NAME_32BIT_PROT(name) 35 35 #include "PGMR0Bth.h" … … 48 48 #undef PGM_BTH_NAME 49 49 50 RT_ END_DECLS50 RT_C_DECLS_END 51 51 52 52 -
trunk/src/VBox/VMM/VMMR0/PGMR0Bth.h
r20365 r20374 24 24 * Internal Functions * 25 25 *******************************************************************************/ 26 RT_ BEGIN_DECLS26 RT_C_DECLS_BEGIN 27 27 PGM_BTH_DECL(int, Trap0eHandler)(PVMCPU pVCpu, RTGCUINT uErr, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault); 28 RT_ END_DECLS28 RT_C_DECLS_END 29 29 30 30 -
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r20365 r20374 59 59 * Internal Functions * 60 60 *******************************************************************************/ 61 RT_ BEGIN_DECLS61 RT_C_DECLS_BEGIN 62 62 VMMR0DECL(int) ModuleInit(void); 63 63 VMMR0DECL(void) ModuleTerm(void); 64 RT_ END_DECLS64 RT_C_DECLS_END 65 65 66 66
Note:
See TracChangeset
for help on using the changeset viewer.