VirtualBox

Changeset 37024 in vbox for trunk/src/VBox/Runtime/include


Ignore:
Timestamp:
May 10, 2011 11:23:44 AM (14 years ago)
Author:
vboxsync
Message:

iprt/dvm: use static, changed prefix of internal functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/include/internal/dvm.h

    r36816 r37024  
    233233 * @param   pDisk   The disk descriptor.
    234234 */
    235 DECLINLINE(uint64_t) dvmDiskGetSectors(PCRTDVMDISK pDisk)
     235DECLINLINE(uint64_t) rtDvmDiskGetSectors(PCRTDVMDISK pDisk)
    236236{
    237237    return pDisk->cbDisk / pDisk->cbSector;
     
    247247 * @param   cbRead   How much to read.
    248248 */
    249 DECLINLINE(int) dvmDiskRead(PCRTDVMDISK pDisk, uint64_t off, void *pvBuf, size_t cbRead)
     249DECLINLINE(int) rtDvmDiskRead(PCRTDVMDISK pDisk, uint64_t off, void *pvBuf, size_t cbRead)
    250250{
    251251    AssertPtrReturn(pDisk, VERR_INVALID_POINTER);
     
    266266 * @param   cbWrite  How much to write.
    267267 */
    268 DECLINLINE(int) dvmDiskWrite(PCRTDVMDISK pDisk, uint64_t off, const void *pvBuf, size_t cbWrite)
     268DECLINLINE(int) rtDvmDiskWrite(PCRTDVMDISK pDisk, uint64_t off, const void *pvBuf, size_t cbWrite)
    269269{
    270270    AssertPtrReturn(pDisk, VERR_INVALID_POINTER);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette