VirtualBox

Changeset 57358 in vbox for trunk/src/VBox/ExtPacks


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/ExtPacks
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ExtPacks/BusMouseSample/BusMouse.cpp

    r56298 r57358  
    2929 */
    3030
    31 /*******************************************************************************
    32 *   Header Files                                                               *
    33 *******************************************************************************/
     31
     32/*********************************************************************************************************************************
     33*   Header Files                                                                                                                 *
     34*********************************************************************************************************************************/
    3435#define LOG_GROUP LOG_GROUP_DEV_KBD
    3536#include <VBox/vmm/pdmdev.h>
     
    7273
    7374
    74 /*******************************************************************************
    75 *   Defined Constants And Macros                                               *
    76 *******************************************************************************/
     75/*********************************************************************************************************************************
     76*   Defined Constants And Macros                                                                                                 *
     77*********************************************************************************************************************************/
    7778/** The original bus mouse controller is fixed at I/O port 0x23C. */
    7879#define BMS_IO_BASE         0x23C
     
    116117
    117118
    118 /*******************************************************************************
    119 *   Structures and Typedefs                                                    *
    120 *******************************************************************************/
     119/*********************************************************************************************************************************
     120*   Structures and Typedefs                                                                                                      *
     121*********************************************************************************************************************************/
    121122/**
    122123 * The device state.
  • trunk/src/VBox/ExtPacks/BusMouseSample/VBoxBusMouseMain.cpp

    r56298 r57358  
    3030
    3131
    32 /*******************************************************************************
    33 *   Header Files                                                               *
    34 *******************************************************************************/
     32/*********************************************************************************************************************************
     33*   Header Files                                                                                                                 *
     34*********************************************************************************************************************************/
    3535#include <VBox/ExtPack/ExtPack.h>
    3636
     
    4343
    4444
    45 /*******************************************************************************
    46 *   Global Variables                                                           *
    47 *******************************************************************************/
     45/*********************************************************************************************************************************
     46*   Global Variables                                                                                                             *
     47*********************************************************************************************************************************/
    4848/** Pointer to the extension pack helpers. */
    4949static PCVBOXEXTPACKHLP g_pHlp;
  • trunk/src/VBox/ExtPacks/Skeleton/VBoxSkeletonMain.cpp

    r56298 r57358  
    3030
    3131
    32 /*******************************************************************************
    33 *   Header Files                                                               *
    34 *******************************************************************************/
     32/*********************************************************************************************************************************
     33*   Header Files                                                                                                                 *
     34*********************************************************************************************************************************/
    3535#include <VBox/ExtPack/ExtPack.h>
    3636
     
    4343
    4444
    45 /*******************************************************************************
    46 *   Global Variables                                                           *
    47 *******************************************************************************/
     45/*********************************************************************************************************************************
     46*   Global Variables                                                                                                             *
     47*********************************************************************************************************************************/
    4848/** Pointer to the extension pack helpers. */
    4949static PCVBOXEXTPACKHLP g_pHlp;
  • trunk/src/VBox/ExtPacks/VBoxDTrace/VBoxDTraceMain.cpp

    r56298 r57358  
    3030
    3131
    32 /*******************************************************************************
    33 *   Header Files                                                               *
    34 *******************************************************************************/
     32/*********************************************************************************************************************************
     33*   Header Files                                                                                                                 *
     34*********************************************************************************************************************************/
    3535#include <VBox/ExtPack/ExtPack.h>
    3636
     
    4343
    4444
    45 /*******************************************************************************
    46 *   Global Variables                                                           *
    47 *******************************************************************************/
     45/*********************************************************************************************************************************
     46*   Global Variables                                                                                                             *
     47*********************************************************************************************************************************/
    4848/** Pointer to the extension pack helpers. */
    4949static PCVBOXEXTPACKHLP g_pHlp;
  • trunk/src/VBox/ExtPacks/VBoxDTrace/VBoxDTraceR0.cpp

    r56989 r57358  
    2020
    2121
    22 /*******************************************************************************
    23 *   Header Files                                                               *
    24 *******************************************************************************/
     22/*********************************************************************************************************************************
     23*   Header Files                                                                                                                 *
     24*********************************************************************************************************************************/
    2525#include <VBox/sup.h>
    2626#include <VBox/log.h>
     
    4444
    4545
    46 /*******************************************************************************
    47 *   Defined Constants And Macros                                               *
    48 *******************************************************************************/
     46/*********************************************************************************************************************************
     47*   Defined Constants And Macros                                                                                                 *
     48*********************************************************************************************************************************/
    4949//#if !defined(RT_OS_WINDOWS) && !defined(RT_OS_OS2)
    5050//# define HAVE_RTMEMALLOCEX_FEATURES
     
    5252
    5353
    54 /*******************************************************************************
    55 *   Structures and Typedefs                                                    *
    56 *******************************************************************************/
     54/*********************************************************************************************************************************
     55*   Structures and Typedefs                                                                                                      *
     56*********************************************************************************************************************************/
    5757
    5858/** Caller indicator. */
     
    156156
    157157
    158 /*******************************************************************************
    159 *   Global Variables                                                           *
    160 *******************************************************************************/
     158/*********************************************************************************************************************************
     159*   Global Variables                                                                                                             *
     160*********************************************************************************************************************************/
    161161/** Per CPU information */
    162162cpucore_t                       g_aVBoxDtCpuCores[RTCPUSET_MAX_CPUS];
  • trunk/src/VBox/ExtPacks/VBoxDTrace/VBoxDTraceWrapper.cpp

    r56298 r57358  
    1919
    2020
    21 /*******************************************************************************
    22 *   Header Files                                                               *
    23 *******************************************************************************/
     21/*********************************************************************************************************************************
     22*   Header Files                                                                                                                 *
     23*********************************************************************************************************************************/
    2424#include <iprt/buildconfig.h>
    2525#include <iprt/env.h>
     
    3737
    3838
    39 /*******************************************************************************
    40 *   Defined Constants And Macros                                               *
    41 *******************************************************************************/
     39/*********************************************************************************************************************************
     40*   Defined Constants And Macros                                                                                                 *
     41*********************************************************************************************************************************/
    4242/** The VBoxDTrace extension pack name.   */
    4343#define VBOX_EXTPACK_VBOXDTRACE_NAME            "Oracle VBoxDTrace Extension Pack"
     
    4646
    4747
    48 /*******************************************************************************
    49 *   Structures and Typedefs                                                    *
    50 *******************************************************************************/
     48/*********************************************************************************************************************************
     49*   Structures and Typedefs                                                                                                      *
     50*********************************************************************************************************************************/
    5151/** The main function of VBoxDTrace.so/dylib/dll. */
    5252typedef int (RTCALL *PFNVBOXDTRACEMAIN)(int argc, char **argv);
  • trunk/src/VBox/ExtPacks/VNC/VBoxVNC.cpp

    r56298 r57358  
    1919 */
    2020
    21 /*******************************************************************************
    22 *   Header Files                                                               *
    23 *******************************************************************************/
     21
     22/*********************************************************************************************************************************
     23*   Header Files                                                                                                                 *
     24*********************************************************************************************************************************/
    2425#define LOG_GROUP LOG_GROUP_VRDE
    2526#include <VBox/log.h>
     
    4950
    5051
    51 /*******************************************************************************
    52 *   Defined Constants And Macros                                               *
    53 *******************************************************************************/
     52/*********************************************************************************************************************************
     53*   Defined Constants And Macros                                                                                                 *
     54*********************************************************************************************************************************/
    5455#define VNC_SIZEOFRGBA          4
    5556#define VNC_PASSWORDSIZE        20
     
    5960
    6061
    61 /*******************************************************************************
    62 *   Structures and Typedefs                                                    *
    63 *******************************************************************************/
     62/*********************************************************************************************************************************
     63*   Structures and Typedefs                                                                                                      *
     64*********************************************************************************************************************************/
    6465class VNCServerImpl
    6566{
  • trunk/src/VBox/ExtPacks/VNC/VBoxVNCMain.cpp

    r56298 r57358  
    1717
    1818
    19 /*******************************************************************************
    20 *   Header Files                                                               *
    21 *******************************************************************************/
     19/*********************************************************************************************************************************
     20*   Header Files                                                                                                                 *
     21*********************************************************************************************************************************/
    2222#include <VBox/ExtPack/ExtPack.h>
    2323
     
    3030
    3131
    32 /*******************************************************************************
    33 *   Global Variables                                                           *
    34 *******************************************************************************/
     32/*********************************************************************************************************************************
     33*   Global Variables                                                                                                             *
     34*********************************************************************************************************************************/
    3535/** Pointer to the extension pack helpers. */
    3636static PCVBOXEXTPACKHLP g_pHlp;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette