Initial load of driver

r1083 | dcl | 2006-08-25 14:46:51 +1000 (Fri, 25 Aug 2006) | 2 lines
This commit is contained in:
Douglas Clowes
2006-08-25 14:46:51 +10:00
parent 650db574c5
commit 8b3816b612
15 changed files with 2928 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/*
* 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