VirtualBox

Ignore:
Timestamp:
Jun 22, 2011 7:30:06 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
72442
Message:

*: RTFILE becomes a pointer, RTFileOpen++ expands it's flags paramter from uint32_t to uint64_t.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/os2/SUPLib-os2.cpp

    r33540 r37596  
    100100    }
    101101
    102     pThis->hDevice = (RTFILE)hDevice;
     102    pThis->hDevice = hDevice;
    103103    return VINF_SUCCESS;
    104104}
     
    112112     * Check if we're inited at all.
    113113     */
    114     if (pThis->hDevice != NIL_RTFILE)
     114    if (pThis->hDevice != (intptr_t)NIL_RTFILE)
    115115    {
    116116        APIRET rc = DosClose((HFILE)pThis->hDevice);
    117117        AssertMsg(rc == NO_ERROR, ("%d\n", rc)); NOREF(rc);
    118         pThis->hDevice = NIL_RTFILE;
     118        pThis->hDevice = (intptr_t)NIL_RTFILE;
    119119    }
    120120
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