This file is indexed.

/usr/include/claws-mail/printing.h is in libclaws-mail-dev 3.14.1-3+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
/* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
 * Copyright (C) 2007-2012 Holger Berndt <hb@claws-mail.org> 
 * and the Claws Mail team
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 * 
 */

#ifndef __PRINTING_H__
#define __PRINTING_H__

#include <gtk/gtk.h>

#ifdef HAVE_CONFIG_H
#include "claws-features.h"
#endif

typedef struct _PrintData		PrintData;

typedef struct _PrintRenderer {
	PangoContext *(*get_pango_context)(gpointer renderer_data);
	gpointer (*get_data_to_print)(gpointer renderer_data, gint sel_start, gint sel_end);
	void (*cb_begin_print)(GtkPrintOperation *op, GtkPrintContext *context,
				gpointer user_data);
	void (*cb_draw_page)(GtkPrintOperation* op, GtkPrintContext*, gint page_nr,
			     gpointer user_data);
} PrintRenderer;

void printing_print(GtkTextView*, GtkWindow*, gint, gint, GtkImage *avatar);
void printing_print_full(GtkWindow *parent, PrintRenderer *renderer, gpointer renderer_data, 
			 gint sel_start, gint sel_end, GtkImage *avatar);
void printing_page_setup(GtkWindow*);
gpointer printing_get_renderer_data(PrintData *print_data);
gdouble  printing_get_zoom(PrintData *print_data);
void     printing_set_n_pages(PrintData *print_data, gint n_pages);
GtkPrintSettings *printing_get_settings(void);
GtkPageSetup *printing_get_page_setup(void);
void printing_store_settings(GtkPrintSettings *new_settings);

#endif /* __PRINTING_H__ */