Changeset 57358 in vbox for trunk/src/VBox/Runtime/common/dvm
- Timestamp:
- Aug 14, 2015 3:16:38 PM (9 years ago)
- Location:
- trunk/src/VBox/Runtime/common/dvm
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dvm/dvm.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/types.h> 32 32 #include <iprt/assert.h> … … 39 39 #include "internal/dvm.h" 40 40 41 /******************************************************************************* 42 * Structures and Typedefs * 43 *******************************************************************************/ 41 42 /********************************************************************************************************************************* 43 * Structures and Typedefs * 44 *********************************************************************************************************************************/ 44 45 45 46 /** … … 89 90 typedef RTDVMVOLUMEINTERNAL *PRTDVMVOLUMEINTERNAL; 90 91 91 /******************************************************************************* 92 * Global variables * 93 *******************************************************************************/ 92 93 /********************************************************************************************************************************* 94 * Global variables * 95 *********************************************************************************************************************************/ 94 96 extern RTDVMFMTOPS g_rtDvmFmtMbr; 95 97 extern RTDVMFMTOPS g_rtDvmFmtGpt; -
trunk/src/VBox/Runtime/common/dvm/dvmbsdlabel.cpp
r56290 r57358 33 33 #include "internal/dvm.h" 34 34 35 /******************************************************************************* 36 * Structures and Typedefs * 37 *******************************************************************************/ 35 36 /********************************************************************************************************************************* 37 * Structures and Typedefs * 38 *********************************************************************************************************************************/ 38 39 39 40 /* -
trunk/src/VBox/Runtime/common/dvm/dvmgpt.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/types.h> 32 32 #include <iprt/assert.h> … … 39 39 40 40 41 /******************************************************************************* 42 * Structures and Typedefs *43 ******************************************************************************* /41 /********************************************************************************************************************************* 42 * Structures and Typedefs * 43 *********************************************************************************************************************************/ 44 44 /** The GPT signature. */ 45 45 #define RTDVM_GPT_SIGNATURE "EFI PART" … … 188 188 189 189 190 /******************************************************************************* 191 * Global Variables *192 ******************************************************************************* /190 /********************************************************************************************************************************* 191 * Global Variables * 192 *********************************************************************************************************************************/ 193 193 /** 194 194 * Mapping of partition types to DVM volume types. -
trunk/src/VBox/Runtime/common/dvm/dvmmbr.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/types.h> 32 32 #include <iprt/assert.h> … … 37 37 38 38 39 /******************************************************************************* 40 * Structures and Typedefs *41 ******************************************************************************* /39 /********************************************************************************************************************************* 40 * Structures and Typedefs * 41 *********************************************************************************************************************************/ 42 42 43 43 /** … … 90 90 91 91 92 /******************************************************************************* 93 * Global Variables *94 ******************************************************************************* /92 /********************************************************************************************************************************* 93 * Global Variables * 94 *********************************************************************************************************************************/ 95 95 /** 96 96 * Mapping of FS types to DVM volume types. -
trunk/src/VBox/Runtime/common/dvm/dvmvfs.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/types.h> 32 32 #include <iprt/assert.h> … … 42 42 #include "internal/dvm.h" 43 43 44 /******************************************************************************* 45 * Structures and Typedefs * 46 *******************************************************************************/ 44 45 /********************************************************************************************************************************* 46 * Structures and Typedefs * 47 *********************************************************************************************************************************/ 47 48 48 49 /**
Note:
See TracChangeset
for help on using the changeset viewer.