This file is indexed.

/usr/include/libsocialweb/interfaces/sw-photo-upload-ginterface.h is in libsocialweb-dev 0.25.20-6+b1.

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
59
60
61
62
#include <glib-object.h>
#include <dbus/dbus-glib.h>

G_BEGIN_DECLS

/**
 * SwPhotoUploadIface:
 *
 * Dummy typedef representing any implementation of this interface.
 */
typedef struct _SwPhotoUploadIface SwPhotoUploadIface;

/**
 * SwPhotoUploadIfaceClass:
 *
 * The class of SwPhotoUploadIface.
 */
typedef struct _SwPhotoUploadIfaceClass SwPhotoUploadIfaceClass;

GType sw_photo_upload_iface_get_type (void);
#define SW_TYPE_PHOTO_UPLOAD_IFACE \
  (sw_photo_upload_iface_get_type ())
#define SW_PHOTO_UPLOAD_IFACE(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST((obj), SW_TYPE_PHOTO_UPLOAD_IFACE, SwPhotoUploadIface))
#define SW_IS_PHOTO_UPLOAD_IFACE(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE((obj), SW_TYPE_PHOTO_UPLOAD_IFACE))
#define SW_PHOTO_UPLOAD_IFACE_GET_CLASS(obj) \
  (G_TYPE_INSTANCE_GET_INTERFACE((obj), SW_TYPE_PHOTO_UPLOAD_IFACE, SwPhotoUploadIfaceClass))


typedef void (*sw_photo_upload_iface_upload_photo_impl) (SwPhotoUploadIface *self,
    const gchar *in_local_filename,
    GHashTable *in_fields,
    DBusGMethodInvocation *context);
void sw_photo_upload_iface_implement_upload_photo (SwPhotoUploadIfaceClass *klass, sw_photo_upload_iface_upload_photo_impl impl);
/**
 * sw_photo_upload_iface_return_from_upload_photo:
 * @context: The D-Bus method invocation context
 * @out_opid: gint  (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_photo_upload_iface_return_from_upload_photo (DBusGMethodInvocation *context,
    gint out_opid);
static inline void
sw_photo_upload_iface_return_from_upload_photo (DBusGMethodInvocation *context,
    gint out_opid)
{
  dbus_g_method_return (context,
      out_opid);
}

void sw_photo_upload_iface_emit_photo_upload_progress (gpointer instance,
    gint arg_opid,
    gint arg_progress,
    const gchar *arg_error_message);


G_END_DECLS