This file is indexed.

/usr/lib/pike7.8/modules/GLUE.pmod/Driver.pmod/Interface.pike is in pike7.8-gl 7.8.866-5build1.

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
//
// $Id: cd844bf1c23d0428989b694c9cbf1f03e19458ce $

#pike __REAL_VERSION__

// Internal interface class for Drivers.

protected void create( function event, function config );

void set_resolution( int(0..) x, int(0..) y );

void flush();

void set_mode( int(0..1) fullscreen, int depth,
	       int width, int height, int gl_flags );

array parse_argv( array argv );

void swap_buffers();

void exit();

void init(void|string title, void|string icon);