VirtualBox

Ignore:
Timestamp:
Nov 28, 2010 2:58:25 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
68208
Message:

ExtPack: Implemented unpacking (untested).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/vfs/vfsbase.cpp

    r34413 r34435  
    19121912
    19131913
     1914RTDECL(void *) RTVfsIoStreamToPrivate(RTVFSIOSTREAM hVfsIos, PCRTVFSIOSTREAMOPS pIoStreamOps)
     1915{
     1916    RTVFSIOSTREAMINTERNAL *pThis = hVfsIos;
     1917    AssertPtrReturn(pThis, NULL);
     1918    AssertReturn(pThis->uMagic == RTVFSIOSTREAM_MAGIC, NULL);
     1919    if (pThis->pOps != pIoStreamOps)
     1920        return NULL;
     1921    return pThis->Base.pvThis;
     1922}
     1923
     1924
    19141925RTDECL(uint32_t)    RTVfsIoStrmRetain(RTVFSIOSTREAM hVfsIos)
    19151926{
Note: See TracChangeset for help on using the changeset viewer.

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