Changeset 69434 in vbox for trunk/src/VBox/Runtime/tools
- Timestamp:
- Oct 27, 2017 3:48:25 PM (7 years ago)
- Location:
- trunk/src/VBox/Runtime/tools
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/RTCat.cpp
r69046 r69434 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/vfs.h> 32 32 … … 42 42 43 43 44 /******************************************************************************* 45 * Structures and Typedefs *46 ******************************************************************************* /44 /********************************************************************************************************************************* 45 * Structures and Typedefs * 46 *********************************************************************************************************************************/ 47 47 /** 48 48 * CAT command options. … … 306 306 } 307 307 308 -
trunk/src/VBox/Runtime/tools/RTDbgSymCache.cpp
r69111 r69434 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/zip.h> 32 32 … … 48 48 49 49 50 /******************************************************************************* 51 * Structures and Typedefs *52 ******************************************************************************* /50 /********************************************************************************************************************************* 51 * Structures and Typedefs * 52 *********************************************************************************************************************************/ 53 53 /** 54 54 * Cache file type. … … 81 81 82 82 83 /******************************************************************************* 84 * Global Variables *85 ******************************************************************************* /83 /********************************************************************************************************************************* 84 * Global Variables * 85 *********************************************************************************************************************************/ 86 86 /** Bundle suffixes. */ 87 87 static const char * const g_apszBundleSuffixes[] = … … 144 144 145 145 146 /******************************************************************************* 147 * Internal Functions *148 ******************************************************************************* /146 /********************************************************************************************************************************* 147 * Internal Functions * 148 *********************************************************************************************************************************/ 149 149 static int rtDbgSymCacheAddDirWorker(char *pszPath, size_t cchPath, PRTDIRENTRYEX pDirEntry, PCRTDBGSYMCACHEADDCFG pCfg); 150 150 -
trunk/src/VBox/Runtime/tools/RTGzip.cpp
r69111 r69434 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/zip.h> 32 32 … … 44 44 45 45 46 /******************************************************************************* 47 * Structures and Typedefs *48 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Structures and Typedefs * 48 *********************************************************************************************************************************/ 49 49 /** 50 50 * Gzip command options. -
trunk/src/VBox/Runtime/tools/RTHttp.cpp
r69111 r69434 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/http.h> 32 32 … … 155 155 } 156 156 157 -
trunk/src/VBox/Runtime/tools/RTIsoMaker.cpp
r69111 r69434 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/fsisomaker.h> 32 32 #include <iprt/err.h> -
trunk/src/VBox/Runtime/tools/RTKrnlModInfo.cpp
r67284 r69434 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/krnlmod.h> 32 32 … … 83 83 } 84 84 85 -
trunk/src/VBox/Runtime/tools/RTLdrFlt.cpp
r69111 r69434 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/mem.h> 32 32 #include <iprt/assert.h> -
trunk/src/VBox/Runtime/tools/RTLs.cpp
r69051 r69434 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/vfs.h> 32 32 … … 44 44 45 45 46 /******************************************************************************* 47 * Structures and Typedefs *48 ******************************************************************************* /46 /********************************************************************************************************************************* 47 * Structures and Typedefs * 48 *********************************************************************************************************************************/ 49 49 /** 50 50 * Display entry. -
trunk/src/VBox/Runtime/tools/RTManifest.cpp
r69111 r69434 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/manifest.h> 32 32 -
trunk/src/VBox/Runtime/tools/RTNtDbgHelp.cpp
r69111 r69434 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/win/windows.h> 32 32 #include <Dbghelp.h> … … 51 51 52 52 53 /******************************************************************************* 54 * Structures and Typedefs *55 ******************************************************************************* /53 /********************************************************************************************************************************* 54 * Structures and Typedefs * 55 *********************************************************************************************************************************/ 56 56 /** 57 57 * Debug module record. … … 74 74 75 75 76 /******************************************************************************* 77 * Global Variables *78 ******************************************************************************* /76 /********************************************************************************************************************************* 77 * Global Variables * 78 *********************************************************************************************************************************/ 79 79 /** Verbosity level. */ 80 80 static int g_iOptVerbose = 1; -
trunk/src/VBox/Runtime/tools/RTRm.cpp
r69111 r69434 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/path.h> 32 32 #include <iprt/err.h> … … 43 43 } 44 44 45 -
trunk/src/VBox/Runtime/tools/RTShutdown.cpp
r69111 r69434 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include <iprt/system.h> 31 32 -
trunk/src/VBox/Runtime/tools/RTSignTool.cpp
r69111 r69434 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/assert.h> 32 32 #include <iprt/buildconfig.h> … … 60 60 61 61 62 /******************************************************************************* 63 * Structures and Typedefs *64 ******************************************************************************* /62 /********************************************************************************************************************************* 63 * Structures and Typedefs * 64 *********************************************************************************************************************************/ 65 65 /** Help detail levels. */ 66 66 typedef enum RTSIGNTOOLHELP … … 125 125 126 126 127 /******************************************************************************* 128 * Internal Functions *129 ******************************************************************************* /127 /********************************************************************************************************************************* 128 * Internal Functions * 129 *********************************************************************************************************************************/ 130 130 static RTEXITCODE HandleHelp(int cArgs, char **papszArgs); 131 131 static RTEXITCODE HelpHelp(PRTSTREAM pStrm, RTSIGNTOOLHELP enmLevel); … … 2593 2593 } 2594 2594 2595 -
trunk/src/VBox/Runtime/tools/RTTar.cpp
r69111 r69434 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/zip.h> 32 32 #include <iprt/err.h> -
trunk/src/VBox/Runtime/tools/RTUnzip.cpp
r69111 r69434 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/zip.h> 32 32 #include <iprt/err.h>
Note:
See TracChangeset
for help on using the changeset viewer.