/* $Id$ */
/** @file
* VD - builtin backends.
*/
/*
* Copyright (C) 2014 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) 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.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#ifndef ___VDBackends_h
#define ___VDBackends_h
#include <VBox/vd-plugin.h>
RT_C_DECLS_BEGIN
extern const VBOXHDDBACKEND g_RawBackend;
extern const VBOXHDDBACKEND g_VmdkBackend;
extern const VBOXHDDBACKEND g_VDIBackend;
extern const VBOXHDDBACKEND g_VhdBackend;
extern const VBOXHDDBACKEND g_ParallelsBackend;
extern const VBOXHDDBACKEND g_DmgBackend;
extern const VBOXHDDBACKEND g_ISCSIBackend;
extern const VBOXHDDBACKEND g_QedBackend;
extern const VBOXHDDBACKEND g_QCowBackend;
extern const VBOXHDDBACKEND g_VhdxBackend;
extern const VDCACHEBACKEND g_VciCacheBackend;
RT_C_DECLS_END
#endif