VirtualBox

source: vbox/trunk/src/VBox/Main/include/vbox-libhal.h@ 86506

Last change on this file since 86506 was 82968, checked in by vboxsync, 4 years ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
1/* $Id: vbox-libhal.h 82968 2020-02-04 10:35:17Z vboxsync $ */
2/** @file
3 *
4 * Module to dynamically load libhal and libdbus and load all symbols
5 * which are needed by VirtualBox.
6 */
7
8/*
9 * Copyright (C) 2006-2020 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 MAIN_INCLUDED_vbox_libhal_h
21#define MAIN_INCLUDED_vbox_libhal_h
22#ifndef RT_WITHOUT_PRAGMA_ONCE
23# pragma once
24#endif
25
26#include <stdint.h>
27
28#define LIB_HAL "libhal.so.1"
29
30/** Types from the dbus and hal header files which we need. These are taken more or less
31 verbatim from the DBus and Hal public interface header files. */
32struct DBusError
33{
34 const char *name;
35 const char *message;
36 unsigned int dummy1 : 1; /**< placeholder */
37 unsigned int dummy2 : 1; /**< placeholder */
38 unsigned int dummy3 : 1; /**< placeholder */
39 unsigned int dummy4 : 1; /**< placeholder */
40 unsigned int dummy5 : 1; /**< placeholder */
41 void *padding1; /**< placeholder */
42};
43struct DBusConnection;
44typedef struct DBusConnection DBusConnection;
45typedef uint32_t dbus_bool_t;
46typedef enum { DBUS_BUS_SESSON, DBUS_BUS_SYSTEM, DBUS_BUS_STARTER } DBusBusType;
47struct LibHalContext_s;
48typedef struct LibHalContext_s LibHalContext;
49
50/** The following are the symbols which we need from libdbus and libhal. */
51extern void (*gDBusErrorInit)(DBusError *);
52extern DBusConnection *(*gDBusBusGet)(DBusBusType, DBusError *);
53extern void (*gDBusErrorFree)(DBusError *);
54extern void (*gDBusConnectionUnref)(DBusConnection *);
55extern LibHalContext *(*gLibHalCtxNew)(void);
56extern dbus_bool_t (*gLibHalCtxSetDBusConnection)(LibHalContext *, DBusConnection *);
57extern dbus_bool_t (*gLibHalCtxInit)(LibHalContext *, DBusError *);
58extern char **(*gLibHalFindDeviceStringMatch)(LibHalContext *, const char *, const char *, int *,
59 DBusError *);
60extern char *(*gLibHalDeviceGetPropertyString)(LibHalContext *, const char *, const char *,
61 DBusError *);
62extern void (*gLibHalFreeString)(char *);
63extern void (*gLibHalFreeStringArray)(char **);
64extern dbus_bool_t (*gLibHalCtxShutdown)(LibHalContext *, DBusError *);
65extern dbus_bool_t (*gLibHalCtxFree)(LibHalContext *);
66
67extern bool gLibHalCheckPresence(void);
68
69#endif /* !MAIN_INCLUDED_vbox_libhal_h */
70/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use