Changeset 57358 in vbox for trunk/src/VBox/ExtPacks
- Timestamp:
- Aug 14, 2015 3:16:38 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102121
- Location:
- trunk/src/VBox/ExtPacks
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/BusMouseSample/BusMouse.cpp
r56298 r57358 29 29 */ 30 30 31 /******************************************************************************* 32 * Header Files * 33 *******************************************************************************/ 31 32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 34 35 #define LOG_GROUP LOG_GROUP_DEV_KBD 35 36 #include <VBox/vmm/pdmdev.h> … … 72 73 73 74 74 /******************************************************************************* 75 * Defined Constants And Macros *76 ******************************************************************************* /75 /********************************************************************************************************************************* 76 * Defined Constants And Macros * 77 *********************************************************************************************************************************/ 77 78 /** The original bus mouse controller is fixed at I/O port 0x23C. */ 78 79 #define BMS_IO_BASE 0x23C … … 116 117 117 118 118 /******************************************************************************* 119 * Structures and Typedefs *120 ******************************************************************************* /119 /********************************************************************************************************************************* 120 * Structures and Typedefs * 121 *********************************************************************************************************************************/ 121 122 /** 122 123 * The device state. -
trunk/src/VBox/ExtPacks/BusMouseSample/VBoxBusMouseMain.cpp
r56298 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #include <VBox/ExtPack/ExtPack.h> 36 36 … … 43 43 44 44 45 /******************************************************************************* 46 * Global Variables *47 ******************************************************************************* /45 /********************************************************************************************************************************* 46 * Global Variables * 47 *********************************************************************************************************************************/ 48 48 /** Pointer to the extension pack helpers. */ 49 49 static PCVBOXEXTPACKHLP g_pHlp; -
trunk/src/VBox/ExtPacks/Skeleton/VBoxSkeletonMain.cpp
r56298 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #include <VBox/ExtPack/ExtPack.h> 36 36 … … 43 43 44 44 45 /******************************************************************************* 46 * Global Variables *47 ******************************************************************************* /45 /********************************************************************************************************************************* 46 * Global Variables * 47 *********************************************************************************************************************************/ 48 48 /** Pointer to the extension pack helpers. */ 49 49 static PCVBOXEXTPACKHLP g_pHlp; -
trunk/src/VBox/ExtPacks/VBoxDTrace/VBoxDTraceMain.cpp
r56298 r57358 30 30 31 31 32 /******************************************************************************* 33 * Header Files *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Header Files * 34 *********************************************************************************************************************************/ 35 35 #include <VBox/ExtPack/ExtPack.h> 36 36 … … 43 43 44 44 45 /******************************************************************************* 46 * Global Variables *47 ******************************************************************************* /45 /********************************************************************************************************************************* 46 * Global Variables * 47 *********************************************************************************************************************************/ 48 48 /** Pointer to the extension pack helpers. */ 49 49 static PCVBOXEXTPACKHLP g_pHlp; -
trunk/src/VBox/ExtPacks/VBoxDTrace/VBoxDTraceR0.cpp
r56989 r57358 20 20 21 21 22 /******************************************************************************* 23 * Header Files *24 ******************************************************************************* /22 /********************************************************************************************************************************* 23 * Header Files * 24 *********************************************************************************************************************************/ 25 25 #include <VBox/sup.h> 26 26 #include <VBox/log.h> … … 44 44 45 45 46 /******************************************************************************* 47 * Defined Constants And Macros *48 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Defined Constants And Macros * 48 *********************************************************************************************************************************/ 49 49 //#if !defined(RT_OS_WINDOWS) && !defined(RT_OS_OS2) 50 50 //# define HAVE_RTMEMALLOCEX_FEATURES … … 52 52 53 53 54 /******************************************************************************* 55 * Structures and Typedefs *56 ******************************************************************************* /54 /********************************************************************************************************************************* 55 * Structures and Typedefs * 56 *********************************************************************************************************************************/ 57 57 58 58 /** Caller indicator. */ … … 156 156 157 157 158 /******************************************************************************* 159 * Global Variables *160 ******************************************************************************* /158 /********************************************************************************************************************************* 159 * Global Variables * 160 *********************************************************************************************************************************/ 161 161 /** Per CPU information */ 162 162 cpucore_t g_aVBoxDtCpuCores[RTCPUSET_MAX_CPUS]; -
trunk/src/VBox/ExtPacks/VBoxDTrace/VBoxDTraceWrapper.cpp
r56298 r57358 19 19 20 20 21 /******************************************************************************* 22 * Header Files *23 ******************************************************************************* /21 /********************************************************************************************************************************* 22 * Header Files * 23 *********************************************************************************************************************************/ 24 24 #include <iprt/buildconfig.h> 25 25 #include <iprt/env.h> … … 37 37 38 38 39 /******************************************************************************* 40 * Defined Constants And Macros *41 ******************************************************************************* /39 /********************************************************************************************************************************* 40 * Defined Constants And Macros * 41 *********************************************************************************************************************************/ 42 42 /** The VBoxDTrace extension pack name. */ 43 43 #define VBOX_EXTPACK_VBOXDTRACE_NAME "Oracle VBoxDTrace Extension Pack" … … 46 46 47 47 48 /******************************************************************************* 49 * Structures and Typedefs *50 ******************************************************************************* /48 /********************************************************************************************************************************* 49 * Structures and Typedefs * 50 *********************************************************************************************************************************/ 51 51 /** The main function of VBoxDTrace.so/dylib/dll. */ 52 52 typedef int (RTCALL *PFNVBOXDTRACEMAIN)(int argc, char **argv); -
trunk/src/VBox/ExtPacks/VNC/VBoxVNC.cpp
r56298 r57358 19 19 */ 20 20 21 /******************************************************************************* 22 * Header Files * 23 *******************************************************************************/ 21 22 /********************************************************************************************************************************* 23 * Header Files * 24 *********************************************************************************************************************************/ 24 25 #define LOG_GROUP LOG_GROUP_VRDE 25 26 #include <VBox/log.h> … … 49 50 50 51 51 /******************************************************************************* 52 * Defined Constants And Macros *53 ******************************************************************************* /52 /********************************************************************************************************************************* 53 * Defined Constants And Macros * 54 *********************************************************************************************************************************/ 54 55 #define VNC_SIZEOFRGBA 4 55 56 #define VNC_PASSWORDSIZE 20 … … 59 60 60 61 61 /******************************************************************************* 62 * Structures and Typedefs *63 ******************************************************************************* /62 /********************************************************************************************************************************* 63 * Structures and Typedefs * 64 *********************************************************************************************************************************/ 64 65 class VNCServerImpl 65 66 { -
trunk/src/VBox/ExtPacks/VNC/VBoxVNCMain.cpp
r56298 r57358 17 17 18 18 19 /******************************************************************************* 20 * Header Files *21 ******************************************************************************* /19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 22 22 #include <VBox/ExtPack/ExtPack.h> 23 23 … … 30 30 31 31 32 /******************************************************************************* 33 * Global Variables *34 ******************************************************************************* /32 /********************************************************************************************************************************* 33 * Global Variables * 34 *********************************************************************************************************************************/ 35 35 /** Pointer to the extension pack helpers. */ 36 36 static PCVBOXEXTPACKHLP g_pHlp;
Note:
See TracChangeset
for help on using the changeset viewer.