VBoxManage.h revision 7de09dedfd16a57c867e0868ee38ee928391eb90
/** @file
* VBox frontends: VBoxManage (command-line interface):
* VBoxManage header.
*/
/*
* Copyright (C) 2006-2007 innotek GmbH
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License as published by the Free Software Foundation,
* in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
* distribution. VirtualBox OSE is distributed in the hope that it will
* be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef ___H_VBOXMANAGE
#define ___H_VBOXMANAGE
/** @name Syntax diagram category.
* @{ */
#define USAGE_DUMPOPTS 0
#define USAGE_LIST BIT64(0)
#ifdef VBOX_OSE
# define USAGE_LISTPARTITIONS (0)
# define USAGE_CREATERAWVMDK (0)
#else /* !VBOX_OSE */
#endif /* !VBOX_OSE */
/** @} */
typedef uint64_t USAGECATEGORY;
/** flag whether we're in internal mode */
extern bool g_fInternalMode;
/** showVMInfo details */
typedef enum
{
VMINFO_NONE = 0,
/*
* Prototypes
*/
int errorArgument(const char *pszFormat, ...);
unsigned long VBoxSVNRev();
#endif /* !___H_VBOXMANAGE */