Changeset 39043 in vbox for trunk/src/VBox/Runtime/common/zip
- Timestamp:
- Oct 19, 2011 5:04:08 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 74463
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/gzipvfs.cpp
r39032 r39043 41 41 #include <zlib.h> 42 42 43 #if defined(RT_OS_OS2) || defined(RT_OS_SOLARIS) || defined(RT_OS_WINDOWS) 44 /** 45 * Drag in the missing zlib symbols. 46 */ 47 PFNRT g_apfnRTZlibDeps[] = 48 { 49 (PFNRT)gzrewind, 50 (PFNRT)gzread, 51 (PFNRT)gzopen, 52 (PFNRT)gzwrite, 53 (PFNRT)gzclose, 54 (PFNRT)gzdopen, 55 NULL 56 }; 57 #endif /* RT_OS_OS2 || RT_OS_SOLARIS || RT_OS_WINDOWS */ 43 58 44 59 /*******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.