/usr/include/tachyon/ui.h is in libtachyon-dev 0.99~b2+dfsg-0.4.
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 | /*
* ui.h - defines for user interface functions
*
* $Id: ui.h,v 1.2 1997/12/04 06:26:01 johns Exp $
*/
/* Different types of message, for levels of verbosity etc */
#define MSG_0 100
#define MSG_1 101
#define MSG_2 102
#define MSG_3 103
#define MSG_4 104
#define MSG_5 105
#define MSG_ERR 200
#define MSG_ABORT 300
void rt_ui_message(int, char *);
void rt_ui_progress(int);
int rt_ui_checkaction(void);
|