36 lines
1.0 KiB
C
36 lines
1.0 KiB
C
/* $NetBSD: display.h,v 1.3 1999/04/12 06:02:26 ross Exp $ */
|
|
|
|
/* constants needed for display.c */
|
|
|
|
/* "type" argument for new_message function */
|
|
|
|
#define MT_standout 1
|
|
#define MT_delayed 2
|
|
|
|
int display_resize __P((void));
|
|
struct statics;
|
|
int display_init __P((struct statics *));
|
|
void i_loadave __P((int, double *));
|
|
void u_loadave __P((int, double *));
|
|
void i_timeofday __P((time_t *));
|
|
void i_procstates __P((int, int *));
|
|
void u_procstates __P((int, int *));
|
|
char *cpustates_tag __P((void));
|
|
void i_cpustates __P((int *));
|
|
void u_cpustates __P((int *));
|
|
void z_cpustates __P((void));
|
|
void i_memory __P((int *));
|
|
void u_memory __P((int *));
|
|
void i_message __P((void));
|
|
void u_message __P((void));
|
|
void i_header __P((char *));
|
|
void u_header __P((char *));
|
|
void i_process __P((int, char *));
|
|
void u_process __P((int, char *));
|
|
void u_endscreen __P((int));
|
|
void display_header __P((int));
|
|
void new_message __P((int, const char *, ...));
|
|
void clear_message __P((void));
|
|
int readline __P((char *, int, int));
|
|
char *printable __P((char *));
|