- Timestamp:
- Apr 5, 2011 6:24:42 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 71002
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dbus.h
r36555 r36567 1 1 /** @file 2 * 3 * Module to dynamically load libdbus and load all symbols 4 * which are needed by VirtualBox. 2 * Module to dynamically load libdbus and load all symbols which are needed by 3 * VirtualBox. 5 4 */ 6 5 … … 26 25 */ 27 26 28 #ifndef ___VBox_ DBus_h29 #define ___VBox_ DBus_h27 #ifndef ___VBox_dbus_h 28 #define ___VBox_dbus_h 30 29 31 30 #include <iprt/types.h> 32 31 #include <iprt/stdarg.h> 32 33 #ifndef __cplusplus 34 # error "This header requires C++ to avoid name clashes." 35 #endif 33 36 34 37 /** Types and defines from the dbus header files which we need. These are … … 98 101 } DBusHandlerResult; 99 102 100 typedef DBusHandlerResult (* DBusHandleMessageFunction)(DBusConnection *,103 typedef DBusHandlerResult (* DBusHandleMessageFunction)(DBusConnection *, 101 104 DBusMessage *, void *); 102 typedef void (* DBusFreeFunction) (void *);105 typedef void (* DBusFreeFunction) (void *); 103 106 104 107 /* Declarations of the functions that we need from libdbus-1 */ 105 108 #define VBOX_DBUS_GENERATE_HEADER 106 RT_C_DECLS_BEGIN 109 107 110 #include <VBox/dbus-calls.h> 108 RT_C_DECLS_END 111 109 112 #undef VBOX_DBUS_GENERATE_HEADER 110 113 -
trunk/src/VBox/Runtime/Makefile.kmk
r36560 r36567 2248 2248 -e '/^_Z[[:alpha:]]*[[:digit:]]\+RTC/d' \ 2249 2249 \ 2250 -e '/^ dbus/d' \2251 -e '/^ RTDBusLoadLib/d' \2250 -e '/^_Z*[[:digit:]]\+dbus/d' \ 2251 -e '/^_Z13RTDBusLoadLibv/d' \ 2252 2252 \ 2253 2253 -e '/^VBoxHost_/d'\
Note:
See TracChangeset
for help on using the changeset viewer.