This file is indexed.

/usr/share/z88dk/include/rex/rex.h is in z88dk-data 1.8.ds1-10.

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
54
55
56
57
/****************************************************************
 *		rex.h						*
 *			Header for Rex addin program.		*
 *								*
 ****************************************************************/


#ifndef _REX_H_
#define _REX_H_

#include <rex/message.h>
#include <rex/struct.h>
#include <rex/syscall.h>
#include <rex/syscallEx.h>
#include <rex/register.h>
#include <rex/Database.h>
#include <rex/CalendarDB.h>
#include <rex/TaskDB.h>
#include <rex/MemoDB.h>
#include <rex/StatusDB.h>
#include <rex/TextInfDB.h>


extern int __LIB__ DsPrintf(int, int, int, char*);

/*
* Graphic routines by Waleed Hasan
*/
extern int __LIB__ DsClearScreen(void);
extern int __LIB__ DsFillScreen(int);
extern int __LIB__ DsGetPixelAddr(int, int, unsigned char*);
extern int __LIB__ DsSetPixel(int, int);
extern int __LIB__ DsDisplayCircle(int, int, int);
extern int __LIB__ DsDisplayEllipse(int, int, int, int);

/*
* farcall functions
*/

extern unsigned long __LIB__ farcall();


#if !_NOFLOAT_
	extern double __LIB__ farcalld();
#endif

extern int __LIB__ findlib(unsigned char*);


extern int __LIB__ DsTrace(char*, ... );

#define DsDisplayBitmapDrawFar( arg1, arg2, arg3, arg4, arg5 ) SYSCALL5( DS_DISPLAY_BITMAP_DRAW, arg1, arg2, arg3, arg4, arg5 )


#define FindLibrary( arg1 )			findlib( arg1 )

#endif /* _REX_H_ */