Changeset 57358 in vbox for trunk/src/VBox/Runtime/common/zip
- Timestamp:
- Aug 14, 2015 3:16:38 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102121
- Location:
- trunk/src/VBox/Runtime/common/zip
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/gzipvfs.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Defined Constants And Macros *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Defined Constants And Macros * 30 *********************************************************************************************************************************/ 31 31 #include "internal/iprt.h" 32 32 #include <iprt/zip.h> … … 58 58 59 59 60 /******************************************************************************* 61 * Structures and Typedefs *62 ******************************************************************************* /60 /********************************************************************************************************************************* 61 * Structures and Typedefs * 62 *********************************************************************************************************************************/ 63 63 #pragma pack(1) 64 64 typedef struct RTZIPGZIPHDR … … 169 169 170 170 171 /******************************************************************************* 172 * Internal Functions *173 ******************************************************************************* /171 /********************************************************************************************************************************* 172 * Internal Functions * 173 *********************************************************************************************************************************/ 174 174 static int rtZipGzip_FlushIt(PRTZIPGZIPSTREAM pThis, uint8_t fFlushType); 175 175 -
trunk/src/VBox/Runtime/common/zip/pkzip.cpp
r56290 r57358 27 27 28 28 /****************************************************************************** 29 * Header Files *30 ******************************************************************************/31 29 #include <iprt/zip.h> 32 30 #include <iprt/file.h> … … 38 36 39 37 40 /******************************************************************************* 41 * Structures and Typedefs *42 ******************************************************************************* /38 /********************************************************************************************************************************* 39 * Structures and Typedefs * 40 *********************************************************************************************************************************/ 43 41 /** 44 42 * Memory stream private data. -
trunk/src/VBox/Runtime/common/zip/pkzipvfs.cpp
r56290 r57358 27 27 28 28 /****************************************************************************** 29 * Header Files *30 ******************************************************************************/31 29 #include <iprt/zip.h> 32 30 #include <iprt/assert.h> … … 41 39 42 40 43 /******************************************************************************* 44 * Structures and Typedefs *45 ******************************************************************************* /41 /********************************************************************************************************************************* 42 * Structures and Typedefs * 43 *********************************************************************************************************************************/ 46 44 /* See http://www.pkware.com/documents/casestudies/APPNOTE.TXT */ 47 45 -
trunk/src/VBox/Runtime/common/zip/tar.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "internal/iprt.h" 32 32 #include <iprt/tar.h> … … 47 47 48 48 49 /******************************************************************************* 50 * Structures and Typedefs *51 ******************************************************************************* /49 /********************************************************************************************************************************* 50 * Structures and Typedefs * 51 *********************************************************************************************************************************/ 52 52 /** @name RTTARRECORD::h::linkflag 53 53 * @{ */ … … 149 149 150 150 151 /******************************************************************************* 152 * Defined Constants And Macros *153 ******************************************************************************* /151 /********************************************************************************************************************************* 152 * Defined Constants And Macros * 153 *********************************************************************************************************************************/ 154 154 155 155 /** Validates a handle and returns VERR_INVALID_HANDLE if not valid. */ -
trunk/src/VBox/Runtime/common/zip/tarcmd.cpp
r56978 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/zip.h> 32 32 … … 48 48 49 49 50 /******************************************************************************* 51 * Defined Constants And Macros *52 ******************************************************************************* /50 /********************************************************************************************************************************* 51 * Defined Constants And Macros * 52 *********************************************************************************************************************************/ 53 53 #define RTZIPTARCMD_OPT_DELETE 1000 54 54 #define RTZIPTARCMD_OPT_OWNER 1001 … … 75 75 76 76 77 /******************************************************************************* 78 * Structures and Typedefs *79 ******************************************************************************* /77 /********************************************************************************************************************************* 78 * Structures and Typedefs * 79 *********************************************************************************************************************************/ 80 80 /** 81 81 * IPRT TAR option structure. -
trunk/src/VBox/Runtime/common/zip/tarvfs.cpp
r56290 r57358 27 27 28 28 /****************************************************************************** 29 * Header Files *30 ******************************************************************************/31 29 #include "internal/iprt.h" 32 30 #include <iprt/zip.h> … … 45 43 46 44 47 /******************************************************************************* 48 * Structures and Typedefs *49 ******************************************************************************* /45 /********************************************************************************************************************************* 46 * Structures and Typedefs * 47 *********************************************************************************************************************************/ 50 48 /** 51 49 * TAR reader state machine states. -
trunk/src/VBox/Runtime/common/zip/unzipcmd.cpp
r56978 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/zip.h> 32 32 #include <iprt/asm.h> … … 41 41 42 42 43 /******************************************************************************* 44 * Defined Constants And Macros *45 ******************************************************************************* /46 47 48 /******************************************************************************* 49 * Structures and Typedefs *50 ******************************************************************************* /43 /********************************************************************************************************************************* 44 * Defined Constants And Macros * 45 *********************************************************************************************************************************/ 46 47 48 /********************************************************************************************************************************* 49 * Structures and Typedefs * 50 *********************************************************************************************************************************/ 51 51 52 52 /** -
trunk/src/VBox/Runtime/common/zip/xarvfs.cpp
r56290 r57358 27 27 28 28 /****************************************************************************** 29 * Header Files *30 ******************************************************************************/31 29 #include "internal/iprt.h" 32 30 #include <iprt/zip.h> … … 47 45 48 46 49 /******************************************************************************* 50 * Defined Constants And Macros *51 ******************************************************************************* /47 /********************************************************************************************************************************* 48 * Defined Constants And Macros * 49 *********************************************************************************************************************************/ 52 50 /** @name Hash state 53 51 * @{ */ … … 59 57 60 58 61 /******************************************************************************* 62 * Structures and Typedefs *63 ******************************************************************************* /59 /********************************************************************************************************************************* 60 * Structures and Typedefs * 61 *********************************************************************************************************************************/ 64 62 /** 65 63 * Hash digest value union for the supported XAR hash functions. -
trunk/src/VBox/Runtime/common/zip/zip.cpp
r56978 r57358 26 26 27 27 28 /******************************************************************************* 29 * Defined Constants And Macros *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Defined Constants And Macros * 30 *********************************************************************************************************************************/ 31 31 #define RTZIP_USE_STORE 1 32 32 #define RTZIP_USE_ZLIB 1 … … 40 40 41 41 42 /******************************************************************************* 43 * Header Files *44 ******************************************************************************* /42 /********************************************************************************************************************************* 43 * Header Files * 44 *********************************************************************************************************************************/ 45 45 #ifdef RTZIP_USE_BZLIB 46 46 # include <bzlib.h> … … 73 73 74 74 75 /******************************************************************************* 76 * Structures and Typedefs *77 ******************************************************************************* /75 /********************************************************************************************************************************* 76 * Structures and Typedefs * 77 *********************************************************************************************************************************/ 78 78 79 79 #ifdef RTZIP_USE_LZF
Note:
See TracChangeset
for help on using the changeset viewer.