This file is indexed.

/usr/src/castle-game-engine-4.1.1/window/castlewindow_backend.inc is in castle-game-engine-src 4.1.1-1.

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
{ Include files appropriate for current CastleWindow implementation. }

{ In various include files here, we dereference memory allocated
  with various libraries, so pointer checks will make false errors. }
{$checkpointer off}

{$ifdef CASTLE_WINDOW_WINAPI}
  {$I castlewindow_winapi.inc}
  {$I castlewindow_winsystem.inc}
{$endif}

{$ifdef CASTLE_WINDOW_XLIB}
  {$I castlewindow_xlib.inc}
  {$I castlewindow_winsystem.inc}
{$endif}

{$ifdef CASTLE_WINDOW_GTK_ANY}
  {$I castlewindow_gtk.inc}
{$endif}

{$ifdef CASTLE_WINDOW_USE_XF86VMODE}
  {$I castlewindow_xf86vmode.inc}
{$endif CASTLE_WINDOW_USE_XF86VMODE}

{$ifdef CASTLE_WINDOW_USE_PRIVATE_MODIFIERS_DOWN}
  {$I castlewindow_private_modifiers_down.inc}
{$endif}

{$ifdef CASTLE_WINDOW_LCL}
  {$I castlewindow_lcl.inc}
{$endif}

{$ifdef CASTLE_WINDOW_TEMPLATE}
  {$I castlewindow_backend_template.inc}
{$endif}

{$ifdef KAMBI_CHECK_POINTER}
{ Turn checkpointer back on }
{$checkpointer on}
{$endif}