/** @file * * VBox frontends: Framebuffer (FB, DirectFB): * Main header file */ /* * Copyright (C) 2006-2007 Sun Microsystems, Inc. * * 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. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 USA or visit http://www.sun.com if you need * additional information or have any questions. */ #ifndef __H_VBOXFB #define __H_VBOXFB // release logging #define LOG_ENABLED #include #include #include // XPCOM headers #include #include #include #include #include #include #include #include #include #include #include #include #include #define IPC_DCONNECTSERVICE_CONTRACTID \ "@mozilla.org/ipc/dconnect-service;1" #include #include #include #include #include // DirectFB header #include /** * Executes the passed in expression and verifies the return code. * * On failure a debug message is printed to stderr and the application will * abort with an fatal error. */ #define DFBCHECK(x...) \ do { \ DFBResult err = x; \ if (err != DFB_OK) \ { \ fprintf(stderr, "%s <%d>:\n\t", __FILE__, __LINE__ ); \ DirectFBErrorFatal(#x, err); \ } \ } while (0) #include "Helper.h" /** * Globals */ extern uint32_t useFixedVideoMode; extern videoMode fixedVideoMode; extern int scaleGuest; #endif // __H_VBOXFB