/usr/include/xfce4/libxfprint/printer.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 | #ifndef PRINTER_LIBXFPRINT_H
#define PRINTER_LIBXFPRINT_H
#include <glib.h>
typedef struct _Printer Printer;
struct _Printer
{
gint type;
gchar *name;
gchar *alias;
};
void printer_free (Printer * printer);
void printers_free (GList * printers);
Printer *printer_lookup_byname (GList * list, const gchar * name);
Printer *printer_lookup_byalias (GList * list, const gchar * alias);
#endif
|