/usr/include/libsocialweb/interfaces/sw-contacts-query-ginterface.h is in libsocialweb-dev 0.25.20-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | #include <glib-object.h>
#include <dbus/dbus-glib.h>
G_BEGIN_DECLS
/**
* SwContactsQueryIface:
*
* Dummy typedef representing any implementation of this interface.
*/
typedef struct _SwContactsQueryIface SwContactsQueryIface;
/**
* SwContactsQueryIfaceClass:
*
* The class of SwContactsQueryIface.
*/
typedef struct _SwContactsQueryIfaceClass SwContactsQueryIfaceClass;
GType sw_contacts_query_iface_get_type (void);
#define SW_TYPE_CONTACTS_QUERY_IFACE \
(sw_contacts_query_iface_get_type ())
#define SW_CONTACTS_QUERY_IFACE(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), SW_TYPE_CONTACTS_QUERY_IFACE, SwContactsQueryIface))
#define SW_IS_CONTACTS_QUERY_IFACE(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), SW_TYPE_CONTACTS_QUERY_IFACE))
#define SW_CONTACTS_QUERY_IFACE_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_INTERFACE((obj), SW_TYPE_CONTACTS_QUERY_IFACE, SwContactsQueryIfaceClass))
typedef void (*sw_contacts_query_iface_open_view_impl) (SwContactsQueryIface *self,
const gchar *in_query,
GHashTable *in_params,
DBusGMethodInvocation *context);
void sw_contacts_query_iface_implement_open_view (SwContactsQueryIfaceClass *klass, sw_contacts_query_iface_open_view_impl impl);
/**
* sw_contacts_query_iface_return_from_open_view:
* @context: The D-Bus method invocation context
* @out_view: const gchar * (FIXME, generate documentation)
*
* Return successfully by calling dbus_g_method_return().
* This inline function exists only to provide type-safety.
*/
static inline
/* this comment is to stop gtkdoc realising this is static */
void sw_contacts_query_iface_return_from_open_view (DBusGMethodInvocation *context,
const gchar *out_view);
static inline void
sw_contacts_query_iface_return_from_open_view (DBusGMethodInvocation *context,
const gchar *out_view)
{
dbus_g_method_return (context,
out_view);
}
G_END_DECLS
|