Changeset 14732 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Nov 27, 2008 6:44:11 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 40046
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp
r13837 r14732 1 /* $Id:$ */ 1 2 /** @file 2 * 3 * VBox frontends: VBoxManage (command-line interface): 4 * VBoxInternalManage 3 * VBoxManage - The 'internalcommands' command. 5 4 * 6 5 * VBoxInternalManage used to be a second CLI for doing special tricks, … … 51 50 /* Includes for the raw disk stuff. */ 52 51 #ifdef RT_OS_WINDOWS 53 # include <windows.h>54 # include <winioctl.h>52 # include <windows.h> 53 # include <winioctl.h> 55 54 #elif defined(RT_OS_LINUX) || defined(RT_OS_DARWIN) || defined(RT_OS_SOLARIS) 56 # include <errno.h>57 # include <sys/ioctl.h>58 # include <sys/types.h>59 # include <sys/stat.h>60 # include <fcntl.h>61 # include <unistd.h>55 # include <errno.h> 56 # include <sys/ioctl.h> 57 # include <sys/types.h> 58 # include <sys/stat.h> 59 # include <fcntl.h> 60 # include <unistd.h> 62 61 #endif 63 62 #ifdef RT_OS_LINUX 64 # include <sys/utsname.h>65 # include <linux/hdreg.h>66 # include <linux/fs.h>63 # include <sys/utsname.h> 64 # include <linux/hdreg.h> 65 # include <linux/fs.h> 67 66 #endif /* RT_OS_LINUX */ 68 67 #ifdef RT_OS_DARWIN 69 # include <sys/disk.h>68 # include <sys/disk.h> 70 69 #endif /* RT_OS_DARWIN */ 71 70 #ifdef RT_OS_SOLARIS 72 # include <stropts.h>73 # include <sys/dkio.h>74 # include <sys/vtoc.h>71 # include <stropts.h> 72 # include <sys/dkio.h> 73 # include <sys/vtoc.h> 75 74 #endif /* RT_OS_SOLARIS */ 76 75 … … 1654 1653 return errorSyntax(USAGE_ALL, "Invalid command '%s'", Utf8Str(argv[0]).raw()); 1655 1654 } 1655 -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h
r14646 r14732 1 /* $Id$ */ 1 2 /** @file 2 * VBox frontends: VBoxManage (command-line interface): 3 * VBoxManage header. 3 * VBoxManage - VirtualBox command-line interface, internal header file. 4 4 */ 5 5 -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestProp.cpp
r14258 r14732 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox frontends: VBoxManage (command-line interface), Guest Properties 4 */ 5 6 /* 7 * Copyright (C) 2006-2007 Sun Microsystems, Inc. 3 * VBoxManage - The 'guestproperty' command. 4 */ 5 6 /* 7 * Copyright (C) 2006-2008 Sun Microsystems, Inc. 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r14646 r14732 1 1 /* $Id$ */ 2 2 /** @file 3 * VBoxManage - VirtualBox's command-line interface. 4 * Information dumping code. 3 * VBoxManage - The 'showvminfo' command and helper routines. 5 4 */ 6 5 -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r14661 r14732 1 1 /* $Id$ */ 2 2 /** @file 3 * VBoxManage - VirtualBox's command-line interface.3 * VBoxManage - The 'list' command. 4 4 */ 5 5 -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageMetrics.cpp
r14731 r14732 1 1 /* $Id$ */ 2 2 /** @file 3 * VBoxManage - VirtualBox's command-line interface. 4 * Metrics handling code. 3 * VBoxManage - Metrics handling code. 5 4 */ 6 5 -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageSVN.cpp
r13908 r14732 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox frontends: VBoxManage (command-line interface): 4 * SVN revision. 3 * VBoxManage - VBoxSVNRev(), separate file to speed up the build. 5 4 */ 6 5 … … 26 25 27 26 /** 28 * Return the SVN revision number. We put this function into a separate file 29 * to speed up compilation if the revision number changes. We don't put this 30 * function into VBoxSVC to save the overhead of starting the server if only 31 * the version number is requested. 27 * Return the SVN revision number. 28 * 29 * We put this function into a separate file to speed up compilation if the 30 * revision number changes. We don't put this function into VBoxSVC to save the 31 * overhead of starting the server if only the version number is requested. 32 32 */ 33 33 unsigned long VBoxSVNRev()
Note:
See TracChangeset
for help on using the changeset viewer.