/usr/include/xfce4/libxfprint/job.h is in xfprint4 4.6.1-3.
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  | #ifndef JOB_LIBXFPRINT_H
#define JOB_LIBXFPRINT_H
#include <glib.h>
typedef enum
{
  JOB_STATE_PENDING,
  JOB_STATE_PRINTING,
} JobState;
typedef struct _Job Job;
struct _Job
{
  gchar *name;
  guint id;
  gchar *user;
  JobState state;
  guint size;
  guint priority;
  gchar *creation_time;
  gchar *processing_time;
};
void job_free (Job * job);
void jobs_free (GList * jobs);
#endif
 |