- Timestamp:
- Aug 14, 2015 10:01:25 PM (9 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/RegCleanup.cpp
r44528 r57372 38 38 #include "string.h" 39 39 40 /******************************************************************************* 41 * Defined Constants And Macros * 42 *******************************************************************************/ 40 41 /********************************************************************************************************************************* 42 * Defined Constants And Macros * 43 *********************************************************************************************************************************/ 43 44 44 45 ///////////////////////////////////////////////////////////////////////////// -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDragAndDrop.cpp
r57358 r57372 60 60 */ 61 61 62 /****************************************************************************** 62 63 /********************************************************************************************************************************* 64 * Private internal functions * 65 *********************************************************************************************************************************/ 63 66 64 67 static int vbglR3DnDQueryNextHostMessageType(PVBGLR3GUESTDNDCMDCTX pCtx, uint32_t *puMsg, uint32_t *pcParms, bool fWait) … … 897 900 } 898 901 899 /****************************************************************************** 902 903 /********************************************************************************************************************************* 904 * Public functions * 905 *********************************************************************************************************************************/ 900 906 901 907 VBGLR3DECL(int) VbglR3DnDConnect(PVBGLR3GUESTDNDCMDCTX pCtx) -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo-win.cpp
r57358 r57372 91 91 92 92 /******************************************************************************* 93 * Prototypes 93 94 *******************************************************************************/ 94 95 uint32_t VBoxServiceVMInfoWinSessionHasProcesses(PLUID pSession, PVBOXSERVICEVMINFOPROC const paProcs, DWORD cProcs); -
trunk/src/VBox/Additions/x11/VBoxClient/seamless-x11.cpp
r57358 r57372 40 40 41 41 /***************************************************************************** 42 * Static functions * 43 *****************************************************************************/ 42 44 43 45 static unsigned char *XXGetProperty (Display *aDpy, Window aWnd, Atom aPropType, -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-cocoa.m
r57358 r57372 147 147 148 148 /******************************************************************************** 149 * 149 150 * VMSVGA3DOverlayView class implementation 150 151 * -
trunk/src/VBox/Devices/Storage/DevATA.cpp
r57358 r57372 524 524 525 525 #ifndef VBOX_DEVICE_STRUCT_TESTCASE 526 /******************************************************************************* 526 527 528 /********************************************************************************************************************************* 529 * Internal Functions * 530 *********************************************************************************************************************************/ 527 531 RT_C_DECLS_BEGIN 528 532 -
trunk/src/VBox/Devices/Storage/DrvVD.cpp
r57358 r57372 670 670 671 671 /******************************************************************************* 672 * VD Crypto interface implementation for the encryption support * 672 673 *******************************************************************************/ 673 674 -
trunk/src/VBox/Disassembler/DisasmCore.cpp
r57358 r57372 224 224 /******************************************************************************************************************************** 225 225 * 226 * 226 227 * Read functions for getting the opcode bytes 227 228 * … … 695 696 /******************************************************************************************************************************** 696 697 * 698 * 697 699 * SIB byte: (not 16-bit mode) 698 700 * 7 - 6 5 - 3 2-0 … … 818 820 819 821 /******************************************************************************************************************************** 822 * 820 823 * 821 824 * ModR/M byte: -
trunk/src/VBox/GuestHost/DragAndDrop/DnDDir.cpp
r57358 r57372 16 16 */ 17 17 18 /****************************************************************************** 19 * Header Files * 20 ******************************************************************************/ 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 21 22 22 23 #include <iprt/assert.h> -
trunk/src/VBox/GuestHost/DragAndDrop/DnDMIME.cpp
r50460 r57372 16 16 */ 17 17 18 /****************************************************************************** 19 * Header Files * 20 ******************************************************************************/ 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 21 22 22 23 #include <iprt/string.h> -
trunk/src/VBox/GuestHost/DragAndDrop/DnDPath.cpp
r50460 r57372 16 16 */ 17 17 18 /****************************************************************************** 19 * Header Files * 20 ******************************************************************************/ 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 21 22 22 23 #include <iprt/path.h> -
trunk/src/VBox/GuestHost/DragAndDrop/DnDURIList.cpp
r56909 r57372 16 16 */ 17 17 18 /****************************************************************************** 19 * Header Files * 20 ******************************************************************************/ 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 21 22 22 23 #include <iprt/dir.h> -
trunk/src/VBox/GuestHost/DragAndDrop/DnDURIObject.cpp
r56911 r57372 17 17 */ 18 18 19 /****************************************************************************** 20 * Header Files * 21 ******************************************************************************/ 19 20 /********************************************************************************************************************************* 21 * Header Files * 22 *********************************************************************************************************************************/ 22 23 23 24 #include <iprt/dir.h> -
trunk/src/VBox/HostDrivers/VBoxPci/linux/VBoxPci-linux.c
r56293 r57372 16 16 */ 17 17 18 /******************************************************************************* 19 * Header Files * 20 *******************************************************************************/ 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 21 22 #include "the-linux-kernel.h" 22 23 #include "version-generated.h" … … 53 54 54 55 55 /******************************************************************************* 56 * Internal Functions*57 56 /********************************************************************************************************************************* 57 * Internal Functions * 58 *********************************************************************************************************************************/ 58 59 static int VBoxPciLinuxInit(void); 59 60 static void VBoxPciLinuxUnload(void); 60 61 61 /******************************************************************************* 62 * Global Variables * 63 *******************************************************************************/ 62 63 /********************************************************************************************************************************* 64 * Global Variables * 65 *********************************************************************************************************************************/ 64 66 static VBOXRAWPCIGLOBALS g_VBoxPciGlobals; 65 67 -
trunk/src/VBox/HostServices/DragAndDrop/dndmanager.cpp
r57286 r57372 16 16 */ 17 17 18 /****************************************************************************** 19 * Header Files * 20 ******************************************************************************/ 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 21 22 22 23 #ifdef LOG_GROUP … … 33 34 #include <iprt/uri.h> 34 35 35 /****************************************************************************** 36 * DnDManager * 37 ******************************************************************************/ 36 37 /********************************************************************************************************************************* 38 * DnDManager * 39 *********************************************************************************************************************************/ 38 40 39 41 int DnDManager::addMessage(uint32_t uMsg, uint32_t cParms, VBOXHGCMSVCPARM paParms[], bool fAppend /* = true */) -
trunk/src/VBox/HostServices/DragAndDrop/service.cpp
r57286 r57372 52 52 */ 53 53 54 /****************************************************************************** 55 * Header Files * 56 ******************************************************************************/ 54 55 /********************************************************************************************************************************* 56 * Header Files * 57 *********************************************************************************************************************************/ 57 58 #ifdef LOG_GROUP 58 59 #undef LOG_GROUP … … 64 65 #include "dndmanager.h" 65 66 66 /****************************************************************************** 67 * Service class declaration * 68 ******************************************************************************/ 67 68 /********************************************************************************************************************************* 69 * Service class declaration * 70 *********************************************************************************************************************************/ 69 71 70 72 /** Map holding pointers to HGCM clients. Key is the (unique) HGCM client ID. */ … … 109 111 }; 110 112 111 /****************************************************************************** 112 * Service class implementation * 113 ******************************************************************************/ 113 114 /********************************************************************************************************************************* 115 * Service class implementation * 116 *********************************************************************************************************************************/ 114 117 115 118 int DragAndDropService::init(VBOXHGCMSVCFNTABLE *pTable) -
trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp
r56030 r57372 16 16 */ 17 17 18 /****************************************************************************** 19 * Header Files * 20 ******************************************************************************/ 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 21 22 #ifndef VBOX_WITH_GUEST_CONTROL 22 23 # error "VBOX_WITH_GUEST_CONTROL must defined in this file" -
trunk/src/VBox/Main/src-server/ApplianceImplIO.cpp
r56307 r57372 16 16 */ 17 17 18 /****************************************************************************** 19 * Header Files * 20 ******************************************************************************/ 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 21 22 22 23 #include "ProgressImpl.h" … … 40 41 41 42 42 /****************************************************************************** 43 * Structures and Typedefs*44 43 /********************************************************************************************************************************* 44 * Structures and Typedefs * 45 *********************************************************************************************************************************/ 45 46 typedef struct FILESTORAGEINTERNAL 46 47 { … … 100 101 } SHASTORAGEINTERNAL, *PSHASTORAGEINTERNAL; 101 102 102 /****************************************************************************** 103 * Defined Constants And Macros * 104 ******************************************************************************/ 103 104 /********************************************************************************************************************************* 105 * Defined Constants And Macros * 106 *********************************************************************************************************************************/ 105 107 106 108 #define STATUS_WAIT UINT32_C(0) … … 118 120 #endif 119 121 120 /****************************************************************************** 121 * Internal Functions * 122 ******************************************************************************/ 122 123 /********************************************************************************************************************************* 124 * Internal Functions * 125 *********************************************************************************************************************************/ 123 126 124 127 -
trunk/src/VBox/Runtime/common/checksum/manifest.cpp
r57358 r57372 69 69 70 70 /******************************************************************************* 71 * Private functions 71 72 *******************************************************************************/ 72 73 … … 99 100 100 101 /******************************************************************************* 102 * Public functions 101 103 *******************************************************************************/ 102 104 -
trunk/src/VBox/Runtime/common/zip/pkzip.cpp
r57358 r57372 26 26 27 27 28 /****************************************************************************** 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 29 31 #include <iprt/zip.h> 30 32 #include <iprt/file.h> -
trunk/src/VBox/Runtime/common/zip/pkzipvfs.cpp
r57358 r57372 26 26 27 27 28 /****************************************************************************** 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 29 31 #include <iprt/zip.h> 30 32 #include <iprt/assert.h> -
trunk/src/VBox/Runtime/common/zip/xarvfs.cpp
r57358 r57372 26 26 27 27 28 /****************************************************************************** 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 29 31 #include "internal/iprt.h" 30 32 #include <iprt/zip.h> -
trunk/src/VBox/Storage/Parallels.cpp
r57358 r57372 111 111 112 112 /*************************************************** 113 * Internal functions * 113 114 **************************************************/ 114 115 -
trunk/src/VBox/Storage/VCICache.cpp
r57358 r57372 33 33 34 34 /******************************************************************************* 35 * On disk data structures * 35 36 *******************************************************************************/ 36 37 -
trunk/src/VBox/VMM/VMMR3/FTM.cpp
r57358 r57372 47 47 48 48 /******************************************************************************* 49 * Structures and Typedefs * 49 50 *******************************************************************************/ 50 51
Note:
See TracChangeset
for help on using the changeset viewer.