Changeset 43790 in vbox for trunk/include
- Timestamp:
- Nov 1, 2012 1:23:10 PM (12 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dbus-calls.h
r36555 r43790 43 43 RT_PROXY_STUB(dbus_error_free, void, (DBusError *error), \ 44 44 (error)) \ 45 RT_PROXY_STUB(dbus_free_string_array, void, (char **str_array), \ 46 (str_array)) \ 45 47 RT_PROXY_STUB(dbus_connection_unref, void, (DBusConnection *connection), \ 46 48 (connection)) \ … … 69 71 (DBusMessage *message, int first_arg_type, va_list var_args), \ 70 72 (message, first_arg_type, var_args)) \ 73 RT_PROXY_STUB(dbus_message_get_args_valist, dbus_bool_t, \ 74 (DBusMessage *message, DBusError *error, int first_arg_type, va_list var_args), \ 75 (message, error, first_arg_type, var_args)) \ 76 RT_PROXY_STUB(dbus_message_get_type, int, \ 77 (DBusMessage *message), \ 78 (message)) \ 71 79 RT_PROXY_STUB(dbus_message_iter_open_container, dbus_bool_t, \ 72 80 (DBusMessageIter *iter, int type, const char *contained_signature, DBusMessageIter *sub), \ … … 124 132 (message, string1, string2)) \ 125 133 RT_PROXY_STUB(dbus_connection_pop_message, DBusMessage *, \ 126 (DBusConnection *connection), (connection)) 134 (DBusConnection *connection), (connection)) \ 135 RT_PROXY_STUB(dbus_set_error_from_message, dbus_bool_t, \ 136 (DBusError *error, DBusMessage *message), (error, message)) 127 137 128 138 #ifdef VBOX_DBUS_GENERATE_HEADER -
trunk/include/VBox/dbus.h
r36567 r43790 81 81 #define DBUS_ERROR_NO_MEMORY "org.freedesktop.DBus.Error.NoMemory" 82 82 83 /* Primitive types */ 83 /* Message types. */ 84 #define DBUS_MESSAGE_TYPE_INVALID 0 85 #define DBUS_MESSAGE_TYPE_METHOD_CALL 1 86 #define DBUS_MESSAGE_TYPE_METHOD_RETURN 2 87 #define DBUS_MESSAGE_TYPE_ERROR 3 88 #define DBUS_MESSAGE_TYPE_SIGNAL 4 89 90 /* Primitive types. */ 84 91 #define DBUS_TYPE_INVALID ((int) '\0') 85 92 #define DBUS_TYPE_INT32 ((int) 'i') … … 88 95 #define DBUS_TYPE_STRING_AS_STRING "s" 89 96 90 /* Compound types */ 97 /* Compound types. */ 98 #define DBUS_TYPE_OBJECT_PATH ((int) 'o') 91 99 #define DBUS_TYPE_ARRAY ((int) 'a') 92 100 #define DBUS_TYPE_ARRAY_AS_STRING "a" … … 113 121 114 122 #endif /* ___VBox_DBus_h not defined */ 115 /* vi: set tabstop=4 shiftwidth=4 expandtab: */116 123
Note:
See TracChangeset
for help on using the changeset viewer.