Changeset 20367 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Jun 8, 2009 12:25:19 AM (16 years ago)
- Location:
- trunk/src/VBox/Devices/Storage
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/ATAController.h
r15252 r20367 179 179 /** Pointer to the I/O buffer. */ 180 180 RCPTRTYPE(uint8_t *) pbIOBufferRC; 181 181 182 182 RTRCPTR Aligmnent1; /**< Align the statistics at an 8-byte boundrary. */ 183 183 … … 397 397 * Internal Functions * 398 398 ******************************************************************************/ 399 __BEGIN_DECLS399 RT_BEGIN_DECLS 400 400 int ataControllerIOPortWrite1(PAHCIATACONTROLLER pCtl, RTIOPORT Port, uint32_t u32, unsigned cb); 401 401 int ataControllerIOPortRead1(PAHCIATACONTROLLER pCtl, RTIOPORT Port, uint32_t *u32, unsigned cb); … … 406 406 int ataControllerBMDMAIOPortRead(PAHCIATACONTROLLER pCtl, RTIOPORT Port, uint32_t *pu32, unsigned cb); 407 407 int ataControllerBMDMAIOPortWrite(PAHCIATACONTROLLER pCtl, RTIOPORT Port, uint32_t u32, unsigned cb); 408 __END_DECLS408 RT_END_DECLS 409 409 410 410 #ifdef IN_RING3 -
trunk/src/VBox/Devices/Storage/DevATA.cpp
r19366 r20367 472 472 * Internal Functions * 473 473 ******************************************************************************/ 474 __BEGIN_DECLS474 RT_BEGIN_DECLS 475 475 PDMBOTHCBDECL(int) ataIOPortWrite1(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb); 476 476 PDMBOTHCBDECL(int) ataIOPortRead1(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *u32, unsigned cb); … … 481 481 PDMBOTHCBDECL(int) ataBMDMAIOPortWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb); 482 482 PDMBOTHCBDECL(int) ataBMDMAIOPortRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb); 483 __END_DECLS483 RT_END_DECLS 484 484 485 485 -
trunk/src/VBox/Devices/Storage/DrvHostBase.h
r19968 r20367 25 25 #include <VBox/cdefs.h> 26 26 27 __BEGIN_DECLS27 RT_BEGIN_DECLS 28 28 29 29 … … 198 198 #define PDMIBLOCK_2_DRVHOSTBASE(pInterface) ( (PDRVHOSTBASE)((uintptr_t)pInterface - RT_OFFSETOF(DRVHOSTBASE, IBlock)) ) 199 199 200 __END_DECLS201 202 #endif 200 RT_END_DECLS 201 202 #endif -
trunk/src/VBox/Devices/Storage/DrvVD.cpp
r20257 r20367 39 39 #ifdef VBOX_WITH_INIP 40 40 /* All lwip header files are not C++ safe. So hack around this. */ 41 __BEGIN_DECLS41 RT_BEGIN_DECLS 42 42 #include <lwip/inet.h> 43 43 #include <lwip/tcp.h> 44 44 #include <lwip/sockets.h> 45 __END_DECLS45 RT_END_DECLS 46 46 #endif /* VBOX_WITH_INIP */ 47 47 -
trunk/src/VBox/Devices/Storage/VDICore.h
r18265 r20367 643 643 * Internal Functions * 644 644 *******************************************************************************/ 645 __BEGIN_DECLS645 RT_BEGIN_DECLS 646 646 647 647 #ifndef VBOX_VDICORE_VD … … 651 651 #endif /* !VBOX_VDICORE_VD */ 652 652 653 __END_DECLS653 RT_END_DECLS 654 654 655 655 #endif
Note:
See TracChangeset
for help on using the changeset viewer.