VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxFB/VBoxFB.h@ 7218

Last change on this file since 7218 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1/** @file
2 *
3 * VBox frontends: Framebuffer (FB, DirectFB):
4 * Main header file
5 */
6
7/*
8 * Copyright (C) 2006-2007 innotek GmbH
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#ifndef __H_VBOXFB
20#define __H_VBOXFB
21
22// release logging
23#define LOG_ENABLED
24
25#include <stdlib.h>
26#include <stdio.h>
27#include <unistd.h>
28
29// XPCOM headers
30#include <nsIServiceManager.h>
31#include <nsIComponentRegistrar.h>
32#include <nsXPCOMGlue.h>
33#include <nsMemory.h>
34#include <nsStringAPI.h>
35#include <nsIProgrammingLanguage.h>
36#include <nsEmbedString.h>
37#include <nsIFile.h>
38#include <nsILocalFile.h>
39#include <VirtualBox_XPCOM.h>
40#include <ipcIService.h>
41#include <ipcCID.h>
42#include <ipcIDConnectService.h>
43#define IPC_DCONNECTSERVICE_CONTRACTID \
44 "@mozilla.org/ipc/dconnect-service;1"
45
46#include <VBox/types.h>
47#include <VBox/err.h>
48#include <VBox/log.h>
49#include <iprt/assert.h>
50#include <iprt/uuid.h>
51
52// DirectFB header
53#include <directfb/directfb.h>
54
55/**
56 * Executes the passed in expression and verifies the return code.
57 *
58 * On failure a debug message is printed to stderr and the application will
59 * abort with an fatal error.
60 */
61#define DFBCHECK(x...) \
62 do { \
63 DFBResult err = x; \
64 if (err != DFB_OK) \
65 { \
66 fprintf(stderr, "%s <%d>:\n\t", __FILE__, __LINE__ ); \
67 DirectFBErrorFatal(#x, err); \
68 } \
69 } while (0)
70
71#include "Helper.h"
72
73/**
74 * Globals
75 */
76extern uint32_t useFixedVideoMode;
77extern videoMode fixedVideoMode;
78extern int scaleGuest;
79
80#endif // __H_VBOXFB
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette