1 |
|
---|
2 | /* $Id: vboximgOpts.h 76528 2018-12-30 05:56:28Z vboxsync $ $Revision: 76528 $ $Date: 2018-12-30 05:56:28 +0000 (Sun, 30 Dec 2018) $ $Author: vboxsync $ */
|
---|
3 |
|
---|
4 | /** @file
|
---|
5 | * vboximgOpts.h
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2008-2017 Oracle Corporation
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | * available from http://www.virtualbox.org. This file is free software;
|
---|
13 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | * General Public License (GPL) as published by the Free Software
|
---|
15 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | */
|
---|
19 |
|
---|
20 | #ifndef ___vboximgopts_h
|
---|
21 | #define ___vboximgopts_h
|
---|
22 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
23 | # pragma once
|
---|
24 | #endif
|
---|
25 |
|
---|
26 |
|
---|
27 | typedef struct vboximgOpts {
|
---|
28 | char *pszVm; /** optional VM UUID */
|
---|
29 | char *pszImageUuidOrPath; /** Virtual Disk image UUID or path */
|
---|
30 | int32_t idxPartition; /** Number of partition to constrain FUSE based FS to (optional) 0 - whole disk*/
|
---|
31 | int32_t offset; /** Offset to base virtual disk reads and writes from (altnerative to partition) */
|
---|
32 | int32_t size; /** Size of accessible disk region, starting at offset, default = offset 0 */
|
---|
33 | uint32_t fListMediaLong; /** Flag to list virtual disks of all known VMs */
|
---|
34 | uint32_t fVerboseList; /** FUSE parsing doesn't understand combined flags (-lv, -vl), so we kludge it */
|
---|
35 | uint32_t fWideList; /** FUSE parsing doesn't understand combined flags,(-lw, -wl) so we kludge it */
|
---|
36 | uint32_t fList; /** Flag to list virtual disks of all known VMs */
|
---|
37 | uint32_t fListParts; /** Flag to summarily list partitions associated with pszImage */
|
---|
38 | uint32_t fAllowRoot; /** Flag to allow root to access this FUSE FS */
|
---|
39 | uint32_t fRW; /** Flag to allow changes to FUSE-mounted Virtual Disk image */
|
---|
40 | uint32_t fWide; /** Flag to use wide-format list mode */
|
---|
41 | uint32_t fBriefUsage; /** Flag to display only FS-specific program usage options */
|
---|
42 | uint32_t fVerbose; /** Add more info to lists and operations */
|
---|
43 | } VBOXIMGOPTS;
|
---|
44 |
|
---|
45 |
|
---|
46 | #endif
|
---|