mirror of https://github.com/BOINC/boinc.git
55 lines
2.9 KiB
C++
55 lines
2.9 KiB
C++
|
// This file is part of BOINC.
|
||
|
// http://boinc.berkeley.edu
|
||
|
// Copyright (C) 2010-2012 University of California
|
||
|
//
|
||
|
// BOINC is free software; you can redistribute it and/or modify it
|
||
|
// under the terms of the GNU Lesser General Public License
|
||
|
// as published by the Free Software Foundation,
|
||
|
// either version 3 of the License, or (at your option) any later version.
|
||
|
//
|
||
|
// BOINC is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||
|
// See the GNU Lesser General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU Lesser General Public License
|
||
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
#define _VIRTUALBOX42_
|
||
|
#define _VIRTUALBOX_IMPORT_FUNCTIONS_
|
||
|
|
||
|
#include "vbox_mscom42.h"
|
||
|
|
||
|
using vbox42::ISnapshot;
|
||
|
using vbox42::MachineState;
|
||
|
#define MachineState_Null vbox42::MachineState_Null
|
||
|
#define MachineState_PoweredOff vbox42::MachineState_PoweredOff
|
||
|
#define MachineState_Saved vbox42::MachineState_Saved
|
||
|
#define MachineState_Teleported vbox42::MachineState_Teleported
|
||
|
#define MachineState_Aborted vbox42::MachineState_Aborted
|
||
|
#define MachineState_Running vbox42::MachineState_Running
|
||
|
#define MachineState_Paused vbox42::MachineState_Paused
|
||
|
#define MachineState_Stuck vbox42::MachineState_Stuck
|
||
|
#define MachineState_Teleporting vbox42::MachineState_Teleporting
|
||
|
#define MachineState_LiveSnapshotting vbox42::MachineState_LiveSnapshotting
|
||
|
#define MachineState_Starting vbox42::MachineState_Starting
|
||
|
#define MachineState_Stopping vbox42::MachineState_Stopping
|
||
|
#define MachineState_Saving vbox42::MachineState_Saving
|
||
|
#define MachineState_Restoring vbox42::MachineState_Restoring
|
||
|
#define MachineState_TeleportingPausedVM vbox42::MachineState_TeleportingPausedVM
|
||
|
#define MachineState_TeleportingIn vbox42::MachineState_TeleportingIn
|
||
|
#define MachineState_FaultTolerantSyncing vbox42::MachineState_FaultTolerantSyncing
|
||
|
#define MachineState_DeletingSnapshotOnline vbox42::MachineState_DeletingSnapshotOnline
|
||
|
#define MachineState_DeletingSnapshotPaused vbox42::MachineState_DeletingSnapshotPaused
|
||
|
#define MachineState_RestoringSnapshot vbox42::MachineState_RestoringSnapshot
|
||
|
#define MachineState_DeletingSnapshot vbox42::MachineState_DeletingSnapshot
|
||
|
#define MachineState_SettingUp vbox42::MachineState_SettingUp
|
||
|
#define MachineState_FirstOnline vbox42::MachineState_FirstOnline
|
||
|
#define MachineState_LastOnline vbox42::MachineState_LastOnline
|
||
|
#define MachineState_FirstTransient vbox42::MachineState_FirstTransient
|
||
|
#define MachineState_LastTransient vbox42::MachineState_LastTransient
|
||
|
|
||
|
using vbox42::VBOX_VM;
|
||
|
|
||
|
#include "vbox_mscom_impl.cpp"
|