16 lines
297 B
C
16 lines
297 B
C
/*
|
|
* Processing of display interaction
|
|
*/
|
|
#ifndef _DISPLAY_H_
|
|
#define _DISPLAY_H_
|
|
#include "utility.h"
|
|
|
|
void put_page(int n);
|
|
void put_form(int n);
|
|
void process_form(int n, BUFFER* bp);
|
|
void put_page_refresh(int n);
|
|
void put_form_refresh(int n);
|
|
void process_command(int n, BUFFER* bp);
|
|
|
|
#endif
|