VirtualBox

Ignore:
Timestamp:
Aug 14, 2015 3:16:38 PM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
102121
Message:

*: scm cleanup run.

Location:
trunk/src/VBox/Runtime/common/zip
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/zip/gzipvfs.cpp

    r56290 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Defined Constants And Macros                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Defined Constants And Macros                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "internal/iprt.h"
    3232#include <iprt/zip.h>
     
    5858
    5959
    60 /*******************************************************************************
    61 *   Structures and Typedefs                                                    *
    62 *******************************************************************************/
     60/*********************************************************************************************************************************
     61*   Structures and Typedefs                                                                                                      *
     62*********************************************************************************************************************************/
    6363#pragma pack(1)
    6464typedef struct RTZIPGZIPHDR
     
    169169
    170170
    171 /*******************************************************************************
    172 *   Internal Functions                                                         *
    173 *******************************************************************************/
     171/*********************************************************************************************************************************
     172*   Internal Functions                                                                                                           *
     173*********************************************************************************************************************************/
    174174static int rtZipGzip_FlushIt(PRTZIPGZIPSTREAM pThis, uint8_t fFlushType);
    175175
  • trunk/src/VBox/Runtime/common/zip/pkzip.cpp

    r56290 r57358  
    2727
    2828/******************************************************************************
    29  *   Header Files                                                             *
    30  ******************************************************************************/
    3129#include <iprt/zip.h>
    3230#include <iprt/file.h>
     
    3836
    3937
    40 /*******************************************************************************
    41 *   Structures and Typedefs                                                    *
    42 *******************************************************************************/
     38/*********************************************************************************************************************************
     39*   Structures and Typedefs                                                                                                      *
     40*********************************************************************************************************************************/
    4341/**
    4442 * Memory stream private data.
  • trunk/src/VBox/Runtime/common/zip/pkzipvfs.cpp

    r56290 r57358  
    2727
    2828/******************************************************************************
    29  *   Header Files                                                             *
    30  ******************************************************************************/
    3129#include <iprt/zip.h>
    3230#include <iprt/assert.h>
     
    4139
    4240
    43 /*******************************************************************************
    44 *   Structures and Typedefs                                                    *
    45 *******************************************************************************/
     41/*********************************************************************************************************************************
     42*   Structures and Typedefs                                                                                                      *
     43*********************************************************************************************************************************/
    4644/* See http://www.pkware.com/documents/casestudies/APPNOTE.TXT */
    4745
  • trunk/src/VBox/Runtime/common/zip/tar.cpp

    r56290 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "internal/iprt.h"
    3232#include <iprt/tar.h>
     
    4747
    4848
    49 /*******************************************************************************
    50 *   Structures and Typedefs                                                    *
    51 *******************************************************************************/
     49/*********************************************************************************************************************************
     50*   Structures and Typedefs                                                                                                      *
     51*********************************************************************************************************************************/
    5252/** @name RTTARRECORD::h::linkflag
    5353 * @{  */
     
    149149
    150150
    151 /*******************************************************************************
    152 *   Defined Constants And Macros                                               *
    153 *******************************************************************************/
     151/*********************************************************************************************************************************
     152*   Defined Constants And Macros                                                                                                 *
     153*********************************************************************************************************************************/
    154154
    155155/** Validates a handle and returns VERR_INVALID_HANDLE if not valid. */
  • trunk/src/VBox/Runtime/common/zip/tarcmd.cpp

    r56978 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include <iprt/zip.h>
    3232
     
    4848
    4949
    50 /*******************************************************************************
    51 *   Defined Constants And Macros                                               *
    52 *******************************************************************************/
     50/*********************************************************************************************************************************
     51*   Defined Constants And Macros                                                                                                 *
     52*********************************************************************************************************************************/
    5353#define RTZIPTARCMD_OPT_DELETE              1000
    5454#define RTZIPTARCMD_OPT_OWNER               1001
     
    7575
    7676
    77 /*******************************************************************************
    78 *   Structures and Typedefs                                                    *
    79 *******************************************************************************/
     77/*********************************************************************************************************************************
     78*   Structures and Typedefs                                                                                                      *
     79*********************************************************************************************************************************/
    8080/**
    8181 * IPRT TAR option structure.
  • trunk/src/VBox/Runtime/common/zip/tarvfs.cpp

    r56290 r57358  
    2727
    2828/******************************************************************************
    29  *   Header Files                                                             *
    30  ******************************************************************************/
    3129#include "internal/iprt.h"
    3230#include <iprt/zip.h>
     
    4543
    4644
    47 /*******************************************************************************
    48 *   Structures and Typedefs                                                    *
    49 *******************************************************************************/
     45/*********************************************************************************************************************************
     46*   Structures and Typedefs                                                                                                      *
     47*********************************************************************************************************************************/
    5048/**
    5149 * TAR reader state machine states.
  • trunk/src/VBox/Runtime/common/zip/unzipcmd.cpp

    r56978 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include <iprt/zip.h>
    3232#include <iprt/asm.h>
     
    4141
    4242
    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*********************************************************************************************************************************/
    5151
    5252/**
  • trunk/src/VBox/Runtime/common/zip/xarvfs.cpp

    r56290 r57358  
    2727
    2828/******************************************************************************
    29  *   Header Files                                                             *
    30  ******************************************************************************/
    3129#include "internal/iprt.h"
    3230#include <iprt/zip.h>
     
    4745
    4846
    49 /*******************************************************************************
    50 *   Defined Constants And Macros                                               *
    51 *******************************************************************************/
     47/*********************************************************************************************************************************
     48*   Defined Constants And Macros                                                                                                 *
     49*********************************************************************************************************************************/
    5250/** @name Hash state
    5351 * @{ */
     
    5957
    6058
    61 /*******************************************************************************
    62 *   Structures and Typedefs                                                    *
    63 *******************************************************************************/
     59/*********************************************************************************************************************************
     60*   Structures and Typedefs                                                                                                      *
     61*********************************************************************************************************************************/
    6462/**
    6563 * Hash digest value union for the supported XAR hash functions.
  • trunk/src/VBox/Runtime/common/zip/zip.cpp

    r56978 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Defined Constants And Macros                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Defined Constants And Macros                                                                                                 *
     30*********************************************************************************************************************************/
    3131#define RTZIP_USE_STORE 1
    3232#define RTZIP_USE_ZLIB 1
     
    4040
    4141
    42 /*******************************************************************************
    43 *   Header Files                                                               *
    44 *******************************************************************************/
     42/*********************************************************************************************************************************
     43*   Header Files                                                                                                                 *
     44*********************************************************************************************************************************/
    4545#ifdef RTZIP_USE_BZLIB
    4646# include <bzlib.h>
     
    7373
    7474
    75 /*******************************************************************************
    76 *   Structures and Typedefs                                                    *
    77 *******************************************************************************/
     75/*********************************************************************************************************************************
     76*   Structures and Typedefs                                                                                                      *
     77*********************************************************************************************************************************/
    7878
    7979#ifdef RTZIP_USE_LZF
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