aboutsummaryrefslogtreecommitdiff
path: root/AT91SAM7S256/Source/c_display.h
blob: 56b6744c9cd7254a4ba5372716b45fdb401aff7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// Programmer      
//
// Date init       14.12.2004
//
// Reviser         $Author:: Dkandlun                                        $
//
// Revision date   $Date:: 14-11-07 12:40                                    $
//
// Filename        $Workfile:: c_display.h                                   $
//
// Version         $Revision:: 1                                             $
//
// Archive         $Archive:: /LMS2006/Sys01/Main_V02/Firmware/Source/c_disp $
//
// Platform        C
//

#ifndef   C_DISPLAY
#define   C_DISPLAY

#ifndef   INCLUDE_OS

typedef   struct
{
  UBYTE   *DisplaySave;
  BMPMAP  *pOldBitmaps[BITMAPS];
  UBYTE   ErasePointer;
  UBYTE   UpdatePointer;
}VARSDISPLAY;

#endif


void      cDisplayInit(void* pHeader);
void      cDisplayCtrl(void);
void      cDisplayExit(void);


extern    const HEADER cDisplay;


#endif