VirtualBox

Changeset 57372 in vbox for trunk/src


Ignore:
Timestamp:
Aug 14, 2015 10:01:25 PM (9 years ago)
Author:
vboxsync
Message:

scm: fixes in previous cleanup run.

Location:
trunk/src/VBox
Files:
25 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/Installer/RegCleanup.cpp

    r44528 r57372  
    3838#include "string.h"
    3939
    40 /*******************************************************************************
    41  *   Defined Constants And Macros                                               *
    42  *******************************************************************************/
     40
     41/*********************************************************************************************************************************
     42*   Defined Constants And Macros                                                                                                 *
     43*********************************************************************************************************************************/
    4344
    4445/////////////////////////////////////////////////////////////////////////////
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDragAndDrop.cpp

    r57358 r57372  
    6060 */
    6161
    62 /******************************************************************************
     62
     63/*********************************************************************************************************************************
     64*   Private internal functions                                                                                                   *
     65*********************************************************************************************************************************/
    6366
    6467static int vbglR3DnDQueryNextHostMessageType(PVBGLR3GUESTDNDCMDCTX pCtx, uint32_t *puMsg, uint32_t *pcParms, bool fWait)
     
    897900}
    898901
    899 /******************************************************************************
     902
     903/*********************************************************************************************************************************
     904*   Public functions                                                                                                             *
     905*********************************************************************************************************************************/
    900906
    901907VBGLR3DECL(int) VbglR3DnDConnect(PVBGLR3GUESTDNDCMDCTX pCtx)
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo-win.cpp

    r57358 r57372  
    9191
    9292/*******************************************************************************
     93*   Prototypes
    9394*******************************************************************************/
    9495uint32_t VBoxServiceVMInfoWinSessionHasProcesses(PLUID pSession, PVBOXSERVICEVMINFOPROC const paProcs, DWORD cProcs);
  • trunk/src/VBox/Additions/x11/VBoxClient/seamless-x11.cpp

    r57358 r57372  
    4040
    4141/*****************************************************************************
     42* Static functions                                                           *
     43*****************************************************************************/
    4244
    4345static unsigned char *XXGetProperty (Display *aDpy, Window aWnd, Atom aPropType,
  • trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-cocoa.m

    r57358 r57372  
    147147
    148148/********************************************************************************
     149*
    149150* VMSVGA3DOverlayView class implementation
    150151*
  • trunk/src/VBox/Devices/Storage/DevATA.cpp

    r57358 r57372  
    524524
    525525#ifndef VBOX_DEVICE_STRUCT_TESTCASE
    526 /*******************************************************************************
     526
     527
     528/*********************************************************************************************************************************
     529*   Internal Functions                                                                                                           *
     530*********************************************************************************************************************************/
    527531RT_C_DECLS_BEGIN
    528532
  • trunk/src/VBox/Devices/Storage/DrvVD.cpp

    r57358 r57372  
    670670
    671671/*******************************************************************************
     672*   VD Crypto interface implementation for the encryption support       *
    672673*******************************************************************************/
    673674
  • trunk/src/VBox/Disassembler/DisasmCore.cpp

    r57358 r57372  
    224224/********************************************************************************************************************************
    225225 *
     226 *
    226227 * Read functions for getting the opcode bytes
    227228 *
     
    695696/********************************************************************************************************************************
    696697 *
     698 *
    697699 * SIB byte: (not 16-bit mode)
    698700 * 7 - 6  5 - 3  2-0
     
    818820
    819821/********************************************************************************************************************************
     822 *
    820823 *
    821824 * ModR/M byte:
  • trunk/src/VBox/GuestHost/DragAndDrop/DnDDir.cpp

    r57358 r57372  
    1616 */
    1717
    18 /******************************************************************************
    19  *   Header Files                                                             *
    20  ******************************************************************************/
     18
     19/*********************************************************************************************************************************
     20*   Header Files                                                                                                                 *
     21*********************************************************************************************************************************/
    2122
    2223#include <iprt/assert.h>
  • trunk/src/VBox/GuestHost/DragAndDrop/DnDMIME.cpp

    r50460 r57372  
    1616 */
    1717
    18 /******************************************************************************
    19  *   Header Files                                                             *
    20  ******************************************************************************/
     18
     19/*********************************************************************************************************************************
     20*   Header Files                                                                                                                 *
     21*********************************************************************************************************************************/
    2122
    2223#include <iprt/string.h>
  • trunk/src/VBox/GuestHost/DragAndDrop/DnDPath.cpp

    r50460 r57372  
    1616 */
    1717
    18 /******************************************************************************
    19  *   Header Files                                                             *
    20  ******************************************************************************/
     18
     19/*********************************************************************************************************************************
     20*   Header Files                                                                                                                 *
     21*********************************************************************************************************************************/
    2122
    2223#include <iprt/path.h>
  • trunk/src/VBox/GuestHost/DragAndDrop/DnDURIList.cpp

    r56909 r57372  
    1616 */
    1717
    18 /******************************************************************************
    19  *   Header Files                                                             *
    20  ******************************************************************************/
     18
     19/*********************************************************************************************************************************
     20*   Header Files                                                                                                                 *
     21*********************************************************************************************************************************/
    2122
    2223#include <iprt/dir.h>
  • trunk/src/VBox/GuestHost/DragAndDrop/DnDURIObject.cpp

    r56911 r57372  
    1717 */
    1818
    19 /******************************************************************************
    20  *   Header Files                                                             *
    21  ******************************************************************************/
     19
     20/*********************************************************************************************************************************
     21*   Header Files                                                                                                                 *
     22*********************************************************************************************************************************/
    2223
    2324#include <iprt/dir.h>
  • trunk/src/VBox/HostDrivers/VBoxPci/linux/VBoxPci-linux.c

    r56293 r57372  
    1616 */
    1717
    18 /*******************************************************************************
    19  *   Header Files                                                               *
    20  *******************************************************************************/
     18
     19/*********************************************************************************************************************************
     20*   Header Files                                                                                                                 *
     21*********************************************************************************************************************************/
    2122#include "the-linux-kernel.h"
    2223#include "version-generated.h"
     
    5354
    5455
    55 /*******************************************************************************
    56  *   Internal Functions                                                         *
    57  *******************************************************************************/
     56/*********************************************************************************************************************************
     57*   Internal Functions                                                                                                           *
     58*********************************************************************************************************************************/
    5859static int  VBoxPciLinuxInit(void);
    5960static void VBoxPciLinuxUnload(void);
    6061
    61 /*******************************************************************************
    62  *   Global Variables                                                           *
    63  *******************************************************************************/
     62
     63/*********************************************************************************************************************************
     64*   Global Variables                                                                                                             *
     65*********************************************************************************************************************************/
    6466static VBOXRAWPCIGLOBALS g_VBoxPciGlobals;
    6567
  • trunk/src/VBox/HostServices/DragAndDrop/dndmanager.cpp

    r57286 r57372  
    1616 */
    1717
    18 /******************************************************************************
    19  *   Header Files                                                             *
    20  ******************************************************************************/
     18
     19/*********************************************************************************************************************************
     20*   Header Files                                                                                                                 *
     21*********************************************************************************************************************************/
    2122
    2223#ifdef LOG_GROUP
     
    3334#include <iprt/uri.h>
    3435
    35 /******************************************************************************
    36  *   DnDManager                                                               *
    37  ******************************************************************************/
     36
     37/*********************************************************************************************************************************
     38*   DnDManager                                                                                                                   *
     39*********************************************************************************************************************************/
    3840
    3941int DnDManager::addMessage(uint32_t uMsg, uint32_t cParms, VBOXHGCMSVCPARM paParms[], bool fAppend /* = true */)
  • trunk/src/VBox/HostServices/DragAndDrop/service.cpp

    r57286 r57372  
    5252 */
    5353
    54 /******************************************************************************
    55  *   Header Files                                                             *
    56  ******************************************************************************/
     54
     55/*********************************************************************************************************************************
     56*   Header Files                                                                                                                 *
     57*********************************************************************************************************************************/
    5758#ifdef LOG_GROUP
    5859 #undef LOG_GROUP
     
    6465#include "dndmanager.h"
    6566
    66 /******************************************************************************
    67  *   Service class declaration                                                *
    68  ******************************************************************************/
     67
     68/*********************************************************************************************************************************
     69*   Service class declaration                                                                                                    *
     70*********************************************************************************************************************************/
    6971
    7072/** Map holding pointers to HGCM clients. Key is the (unique) HGCM client ID. */
     
    109111};
    110112
    111 /******************************************************************************
    112  *   Service class implementation                                             *
    113  ******************************************************************************/
     113
     114/*********************************************************************************************************************************
     115*   Service class implementation                                                                                                 *
     116*********************************************************************************************************************************/
    114117
    115118int DragAndDropService::init(VBOXHGCMSVCFNTABLE *pTable)
  • trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp

    r56030 r57372  
    1616 */
    1717
    18 /******************************************************************************
    19  *   Header Files                                                             *
    20  ******************************************************************************/
     18
     19/*********************************************************************************************************************************
     20*   Header Files                                                                                                                 *
     21*********************************************************************************************************************************/
    2122#ifndef VBOX_WITH_GUEST_CONTROL
    2223# error "VBOX_WITH_GUEST_CONTROL must defined in this file"
  • trunk/src/VBox/Main/src-server/ApplianceImplIO.cpp

    r56307 r57372  
    1616 */
    1717
    18 /******************************************************************************
    19  *   Header Files                                                             *
    20  ******************************************************************************/
     18
     19/*********************************************************************************************************************************
     20*   Header Files                                                                                                                 *
     21*********************************************************************************************************************************/
    2122
    2223#include "ProgressImpl.h"
     
    4041
    4142
    42 /******************************************************************************
    43  *   Structures and Typedefs                                                  *
    44  ******************************************************************************/
     43/*********************************************************************************************************************************
     44*   Structures and Typedefs                                                                                                      *
     45*********************************************************************************************************************************/
    4546typedef struct FILESTORAGEINTERNAL
    4647{
     
    100101} SHASTORAGEINTERNAL, *PSHASTORAGEINTERNAL;
    101102
    102 /******************************************************************************
    103  *   Defined Constants And Macros                                             *
    104  ******************************************************************************/
     103
     104/*********************************************************************************************************************************
     105*   Defined Constants And Macros                                                                                                 *
     106*********************************************************************************************************************************/
    105107
    106108#define STATUS_WAIT    UINT32_C(0)
     
    118120#endif
    119121
    120 /******************************************************************************
    121  *   Internal Functions                                                       *
    122  ******************************************************************************/
     122
     123/*********************************************************************************************************************************
     124*   Internal Functions                                                                                                           *
     125*********************************************************************************************************************************/
    123126
    124127
  • trunk/src/VBox/Runtime/common/checksum/manifest.cpp

    r57358 r57372  
    6969
    7070/*******************************************************************************
     71*   Private functions
    7172*******************************************************************************/
    7273
     
    99100
    100101/*******************************************************************************
     102*   Public functions
    101103*******************************************************************************/
    102104
  • trunk/src/VBox/Runtime/common/zip/pkzip.cpp

    r57358 r57372  
    2626
    2727
    28 /******************************************************************************
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    2931#include <iprt/zip.h>
    3032#include <iprt/file.h>
  • trunk/src/VBox/Runtime/common/zip/pkzipvfs.cpp

    r57358 r57372  
    2626
    2727
    28 /******************************************************************************
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    2931#include <iprt/zip.h>
    3032#include <iprt/assert.h>
  • trunk/src/VBox/Runtime/common/zip/xarvfs.cpp

    r57358 r57372  
    2626
    2727
    28 /******************************************************************************
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    2931#include "internal/iprt.h"
    3032#include <iprt/zip.h>
  • trunk/src/VBox/Storage/Parallels.cpp

    r57358 r57372  
    111111
    112112/***************************************************
     113 * Internal functions                              *
    113114 **************************************************/
    114115
  • trunk/src/VBox/Storage/VCICache.cpp

    r57358 r57372  
    3333
    3434/*******************************************************************************
     35* On disk data structures                                                      *
    3536*******************************************************************************/
    3637
  • trunk/src/VBox/VMM/VMMR3/FTM.cpp

    r57358 r57372  
    4747
    4848/*******************************************************************************
     49 * Structures and Typedefs                                                     *
    4950 *******************************************************************************/
    5051
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