Implement PBM read file and display

This commit is contained in:
Nils Faerber 2011-07-23 21:32:08 +02:00
parent 8de8db41a6
commit a32e1e3a9f
3 changed files with 168 additions and 17 deletions

View file

@ -1,3 +1,9 @@
/*
* (c) 2011 Siegen, Germany by Nils Faerber <nils.faerber@kernelconcepts.de>
*
* license LGPL
*/
#ifndef _MW_PROT_H
#define _MW_PROT_H
@ -50,5 +56,19 @@
#define MW_SCREEN_MODE_NOTIFICATION 0x02
#define MW_SCREEN_MODE_SCROLL 0x03
const char *mw_screen_mode_names[] = {
"idle screen",
"application screen",
"notification screen",
"scroll"
};
const char *mw_status_string[] = {
"Reserved",
"Mode Change",
"Display Timeout"
};
#endif