Changeset 25477 in vbox for trunk/include/VBox/dbus.h
- Timestamp:
- Dec 18, 2009 12:46:53 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56146
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dbus.h
r24409 r25477 33 33 #define ___VBox_DBus_h 34 34 35 #include <stdint.h> 35 #include <iprt/types.h> 36 #include <iprt/stdarg.h> 36 37 37 38 #define VBOX_DBUS_1_3_LIB "libdbus-1.so.3" … … 50 51 void *padding1; 51 52 }; 53 typedef struct DBusError DBusError; 54 52 55 struct DBusConnection; 53 56 typedef struct DBusConnection DBusConnection; 57 54 58 typedef uint32_t dbus_bool_t; 55 59 typedef uint32_t dbus_uint32_t; 56 60 typedef enum { DBUS_BUS_SESSON, DBUS_BUS_SYSTEM, DBUS_BUS_STARTER } DBusBusType; 61 57 62 struct DBusMessage; 58 63 typedef struct DBusMessage DBusMessage; 64 59 65 struct DBusMessageIter 60 66 { … … 104 110 /* Declarations of the functions that we need from libdbus-1 */ 105 111 #define VBOX_PROXY_STUB(function, rettype, signature, shortsig) \ 106 RTR3DECL(rettype) ( function ) signature ;112 RTR3DECL(rettype) ( function ) signature ; 107 113 108 114 #include <VBox/dbus-calls.h>
Note:
See TracChangeset
for help on using the changeset viewer.