Rev 2248 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2248 | - | 1 | /***************************************************************************************************************************** |
2 | * File: menu.h |
||
3 | * Purpose: header of menu.c |
||
4 | *****************************************************************************************************************************/ |
||
5 | #ifndef _MENU_H |
||
6 | #define _MENU_H |
||
7 | |||
8 | extern void Menu(void); |
||
9 | extern void LcdClear(void); |
||
10 | extern char DisplayBuff[80]; |
||
11 | extern unsigned char DispPtr; |
||
12 | |||
13 | extern unsigned char MaxMenue; |
||
14 | extern unsigned char MenuePunkt; |
||
15 | extern unsigned char RemoteKeys; |
||
16 | |||
17 | #endif |
||
18 | //*** EOF: _MENU_H *********************************************************************************************************** |
||
19 |