Changeset 20365 in vbox for trunk/src/VBox/VMM/VMMGC
- Timestamp:
- Jun 8, 2009 12:19:18 AM (16 years ago)
- Location:
- trunk/src/VBox/VMM/VMMGC
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMGC/CPUMGC.cpp
r18927 r20365 38 38 * Internal Functions * 39 39 *******************************************************************************/ 40 __BEGIN_DECLS /* addressed from asm (not called so no DECLASM). */40 RT_BEGIN_DECLS /* addressed from asm (not called so no DECLASM). */ 41 41 DECLCALLBACK(int) cpumGCHandleNPAndGP(PVM pVM, PCPUMCTXCORE pRegFrame, uintptr_t uUser); 42 __END_DECLS42 RT_END_DECLS 43 43 44 44 -
trunk/src/VBox/VMM/VMMGC/PDMGCDevice.cpp
r19484 r20365 43 43 * Global Variables * 44 44 *******************************************************************************/ 45 __BEGIN_DECLS45 RT_BEGIN_DECLS 46 46 extern DECLEXPORT(const PDMDEVHLPRC) g_pdmRCDevHlp; 47 47 extern DECLEXPORT(const PDMPICHLPRC) g_pdmRCPicHlp; … … 49 49 extern DECLEXPORT(const PDMIOAPICHLPRC) g_pdmRCIoApicHlp; 50 50 extern DECLEXPORT(const PDMPCIHLPRC) g_pdmRCPciHlp; 51 __END_DECLS51 RT_END_DECLS 52 52 53 53 -
trunk/src/VBox/VMM/VMMGC/PGMGCBth.h
r8155 r20365 24 24 * Internal Functions * 25 25 *******************************************************************************/ 26 __BEGIN_DECLS27 __END_DECLS26 RT_BEGIN_DECLS 27 RT_END_DECLS 28 28 29 29 -
trunk/src/VBox/VMM/VMMGC/PGMGCShw.h
r8155 r20365 74 74 * Internal Functions * 75 75 *******************************************************************************/ 76 __BEGIN_DECLS77 __END_DECLS76 RT_BEGIN_DECLS 77 RT_END_DECLS 78 78 -
trunk/src/VBox/VMM/VMMGC/TRPMGCHandlers.cpp
r19821 r20365 99 99 * Global Variables * 100 100 *******************************************************************************/ 101 __BEGIN_DECLS101 RT_BEGIN_DECLS 102 102 /** Defined in VMMGC0.asm or VMMGC99.asm. 103 103 * @{ */ … … 109 109 extern const TRPMGCHYPER g_aTrap0eHandlersEnd[1]; 110 110 /** @} */ 111 __END_DECLS111 RT_END_DECLS 112 112 113 113 … … 115 115 * Internal Functions * 116 116 *******************************************************************************/ 117 __BEGIN_DECLS /* addressed from asm (not called so no DECLASM). */117 RT_BEGIN_DECLS /* addressed from asm (not called so no DECLASM). */ 118 118 DECLCALLBACK(int) trpmGCTrapInGeneric(PVM pVM, PCPUMCTXCORE pRegFrame, uintptr_t uUser); 119 __END_DECLS119 RT_END_DECLS 120 120 121 121
Note:
See TracChangeset
for help on using the changeset viewer.