This file is indexed.

/usr/include/unagi/display.h is in unagi-dev 0.3.4-1ubuntu2.

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
/* -*-mode:c;coding:utf-8; c-basic-offset:2;fill-column:70;c-file-style:"gnu"-*-
 *
 * Copyright (C) 2009 Arnaud "arnau" Fontaine <arnau@mini-dweeb.org>
 *
 * 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/>.
 */

/** \file
 *  \brief Display management run on startup
 */

#ifndef INIT_DISPLAY_H
#define INIT_DISPLAY_H

#include <stdbool.h>

#include <xcb/xcb.h>
#include <xcb/xfixes.h>
#include <xcb/randr.h>

void display_init_event_handlers(void);

void display_init_extensions(void);
void display_init_extensions_finalise(void);

void display_event_set_owner_property(xcb_property_notify_event_t *);
void display_register_cm(void);
bool display_register_cm_finalise(void);

void display_init_atoms(void);
bool display_init_atoms_finalise(void);

void display_init_redirect(void);
void display_init_redirect_finalise(void);

void display_add_damaged_region(xcb_xfixes_region_t *, bool);
void display_reset_damaged(void);

void display_set_screen_refresh_rate(xcb_randr_get_screen_info_cookie_t);

#endif