/usr/share/z88dk/include/oz700/ozscreen.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 | /*
HTC Compatibility Library and OZ extras
3. BACKLIGHT AND SCREEN CONTROL
$Id: ozscreen.h,v 1.2 2003/10/21 17:15:19 stefano Exp $
*/
#ifndef _OZSCREEN_H
#define _OZSCREEN_H
extern __LIB__ oztogglelight(void);
extern __LIB__ ozsetlight(int l);
//int ozgetlight(void);
extern __LIB__ ozblankscreen(void);
extern __LIB__ ozunblankscreen(void);
extern __LIB__ ozsetcontrast(int c);
extern int __LIB__ ozgetcontrast(void);
#define MAX_CONTRAST 0x3F
#endif
|