Changeset 23864 in vbox
- Timestamp:
- Oct 19, 2009 12:28:11 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 53633
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dbus.h
r23860 r23864 21 21 */ 22 22 23 #ifndef ___ _H_VBOX_DBUS24 #define ___ _H_VBOX_DBUS23 #ifndef ___VBox_DBus_h 24 #define ___VBox_DBus_h 25 25 26 26 #include <stdint.h> … … 67 67 typedef struct DBusMessageIter DBusMessageIter; 68 68 69 #define DBUS_ERROR_NO_MEMORY "org.freedesktop.DBus.Error.NoMemory" 70 #define DBUS_TYPE_INVALID ((int) '\0') 71 #define DBUS_TYPE_STRING ((int) 's') 72 #define DBUS_TYPE_ARRAY ((int) 'a') 73 #define DBUS_TYPE_DICT_ENTRY ((int) 'e') 69 #define DBUS_ERROR_NO_MEMORY "org.freedesktop.DBus.Error.NoMemory" 70 71 /* Primitive types */ 72 #define DBUS_TYPE_INVALID ((int) '\0') 73 #define DBUS_TYPE_INT32 ((int) 'i') 74 #define DBUS_TYPE_UINT32 ((int) 'u') 75 #define DBUS_TYPE_STRING ((int) 's') 76 #define DBUS_TYPE_STRING_AS_STRING "s" 77 78 /* Compound types */ 79 #define DBUS_TYPE_ARRAY ((int) 'a') 80 #define DBUS_TYPE_ARRAY_AS_STRING "a" 81 #define DBUS_TYPE_DICT_ENTRY ((int) 'e') 82 #define DBUS_TYPE_DICT_ENTRY_AS_STRING "e" 74 83 75 84 typedef enum … … 101 110 RTR3DECL(int) RTDBusLoadLib(void); 102 111 103 #endif /* ___ _H_VBOX_DBUSnot defined */112 #endif /* ___VBox_DBus_h not defined */ 104 113 /* vi: set tabstop=4 shiftwidth=4 expandtab: */ 105 114
Note:
See TracChangeset
for help on using the changeset viewer.