VirtualBox

Changeset 33887 in vbox


Ignore:
Timestamp:
Nov 9, 2010 10:49:23 AM (14 years ago)
Author:
vboxsync
Message:

iprt: started hacking a gunzip/gzip I/O stream implementation.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/err.h

    r33426 r33887  
    12811281/** @} */
    12821282
     1283
     1284/** @name RTZip status codes
     1285 * @{ */
     1286/** Generic zip error. */
     1287#define VERR_ZIP_ERROR                          (-950)
     1288/** The compressed data was corrupted. */
     1289#define VERR_ZIP_CORRUPTED                      (-951)
     1290/** Ran out of memory while compressing or uncompressing. */
     1291#define VERR_ZIP_NO_MEMORY                      (-952)
     1292/** The compression format version is unsupported. */
     1293#define VERR_ZIP_UNSUPPORTED_VERSION            (-953)
     1294/** The compression method is unsupported. */
     1295#define VERR_ZIP_UNSUPPORTED_METHOD             (-954)
     1296/** @} */
     1297
    12831298/* SED-END */
    12841299
  • trunk/include/iprt/vfslowlevel.h

    r33867 r33887  
    542542 *                              (size is @a cbInstance).
    543543 */
    544 RTDECL(int) RTVfsNewStream(PCRTVFSIOSTREAMOPS pIoStreamOps, size_t cbInstance, uint32_t fOpen, RTVFS hVfs, RTSEMRW hSemRW,
    545                            PRTVFSIOSTREAM phVfsIos, void **ppvInstance);
     544RTDECL(int) RTVfsNewIoStream(PCRTVFSIOSTREAMOPS pIoStreamOps, size_t cbInstance, uint32_t fOpen, RTVFS hVfs, RTSEMRW hSemRW,
     545                             PRTVFSIOSTREAM phVfsIos, void **ppvInstance);
    546546
    547547
  • trunk/src/VBox/Runtime/Makefile.kmk

    r33820 r33887  
    371371        common/vfs/vfsbase.cpp \
    372372        common/vfs/vfsstdfile.cpp \
     373        common/zip/zipgzip.cpp \
    373374        generic/critsect-generic.cpp \
    374375        generic/env-generic.cpp \
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