- Timestamp:
- Mar 28, 2009 2:19:08 AM (16 years ago)
- Location:
- trunk/src/VBox/Devices/Storage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevATA.cpp
r18193 r18434 1829 1829 int rc = VINF_SUCCESS; 1830 1830 uint8_t abATAPISense[ATAPI_SENSE_SIZE]; 1831 size_t cbTransfer;1831 uint32_t cbTransfer; 1832 1832 PSTAMPROFILEADV pProf = NULL; 1833 1833 … … 1862 1862 * imbalance of powers. */ 1863 1863 uint8_t aATAPICmd[ATAPI_PACKET_SIZE]; 1864 uint32_t iATAPILBA, cSectors, cReqSectors; 1865 size_t cbCurrTX; 1864 uint32_t iATAPILBA, cSectors, cReqSectors, cbCurrTX; 1866 1865 uint8_t *pbBuf = s->CTX_SUFF(pbIOBuffer); 1867 1866 -
trunk/src/VBox/Devices/Storage/DrvHostDVD.cpp
r18087 r18434 399 399 /** @copydoc PDMIBLOCK::pfnSendCmd */ 400 400 static int drvHostDvdSendCmd(PPDMIBLOCK pInterface, const uint8_t *pbCmd, 401 PDMBLOCKTXDIR enmTxDir, void *pvBuf, size_t *pcbBuf,401 PDMBLOCKTXDIR enmTxDir, void *pvBuf, uint32_t *pcbBuf, 402 402 uint8_t *pabSense, size_t cbSense, uint32_t cTimeoutMillies) 403 403 {
Note:
See TracChangeset
for help on using the changeset viewer.