Hotplug: Separate D-Bus into core and hotplug API components

Break up D-Bus into two components: a D-Bus core that can be used by any
part of the server (for the moment, just the D-Bus hotplug API, and the
forthcoming HAL hotplug API), and the old D-Bus hotplug API.
This commit is contained in:
Daniel Stone 2007-07-08 14:28:58 +03:00
commit 1cdadc2f43
9 changed files with 756 additions and 499 deletions

View file

@ -465,9 +465,12 @@
/* Define to 1 if modules should avoid the libcwrapper */
#undef NO_LIBCWRAPPER
/* Support D-BUS */
/* Support D-Bus */
#undef HAVE_DBUS
/* Support the D-Bus hotplug API */
#undef CONFIG_DBUS_API
/* Use only built-in fonts */
#undef BUILTIN_FONTS

View file

@ -1,5 +1,5 @@
/*
* Copyright © 2006 Daniel Stone
* Copyright © 2006-2007 Daniel Stone
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
@ -21,10 +21,10 @@
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef HOTPLUG_H
#define HOTPLUG_H
void configInitialise(void);
void configFini(void);
void config_init(void);
void config_fini(void);
#endif /* CONFIG_H */
#endif /* HOTPLUG_H */