VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxSDL/Helper.h@ 74942

Last change on this file since 74942 was 69500, checked in by vboxsync, 7 years ago

*: scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1/* $Id: Helper.h 69500 2017-10-28 15:14:05Z vboxsync $ */
2/** @file
3 *
4 * VBox frontends: VBoxSDL (simple frontend based on SDL):
5 * Miscellaneous helpers header
6 */
7
8/*
9 * Copyright (C) 2006-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 __H_HELPER
21#define __H_HELPER
22
23#if defined(VBOX_WITH_XPCOM) && !defined(RT_OS_DARWIN) && !defined(RT_OS_OS2)
24
25/** Indicates that the XPCOM queue thread is needed for this platform. */
26# define USE_XPCOM_QUEUE_THREAD 1
27
28/**
29 * Creates the XPCOM event thread
30 *
31 * @returns VBOX status code
32 * @param eqFD XPCOM event queue file descriptor
33 */
34int startXPCOMEventQueueThread(int eqFD);
35
36/*
37 * Notify the XPCOM thread that we consumed an XPCOM event
38 */
39void consumedXPCOMUserEvent(void);
40
41/**
42 * Signal to the XPCOM even queue thread that it should select for more events.
43 */
44void signalXPCOMEventQueueThread(void);
45
46/**
47 * Indicates to the XPCOM thread that it should terminate now.
48 */
49void terminateXPCOMQueueThread(void);
50
51#endif /* defined(VBOX_WITH_XPCOM) && !defined(RT_OS_DARWIN) && !defined(RT_OS_OS2) */
52
53#endif // __H_HELPER
54
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use