~benklop/+junk/lcdproc

« back to all changes in this revision

Viewing changes to server/drivers/irmanin.h

  • Committer: Bazaar Package Importer
  • Author(s): Jose Luis Tallon
  • Date: 2006-07-23 20:23:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060723202348-w65hrbvpwniqn9by
Tags: 0.5.0-1
* New upstream version (Closes: #367945)
  - New maintainer. Thank you for your previous work, Jon!
  - Upstream added suport for 'imon' devices (Closes: #365496)
  - Upstream fixed descriptor leak (Closes: #355460)
  - Upstream fixed placing widgets in frame (Closes: #355458)

* Packaging
  - Depend on debconf-2.0; Allow transition (Closes: #331885)
  - Remove dependency on automake (Closes: #376449)
  - Include missing INSTALL instructions (Closes: #365436)
  - Changed most "by hand" installation steps into debhelper-based ones
  - Updated to 3.7.2 standards version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef LCD_IRMANIN__H
2
2
#define LCD_IRMANIN_H
3
3
 
4
 
extern lcd_logical_driver *joy;
5
 
 
6
 
int irmanin_init (struct lcd_logical_driver *driver, char *args);
7
 
void irmanin_close ();
8
 
char irmanin_getkey ();
 
4
typedef struct _codemap {
 
5
        const char *irman;
 
6
        const char *lcdproc;
 
7
} CodeMap;
 
8
 
 
9
typedef struct driver_private_data {
 
10
        char device[256];
 
11
        char config[256];
 
12
        char *portname;
 
13
} PrivateData;
 
14
 
 
15
MODULE_EXPORT int irmanin_init (Driver *drvthis);
 
16
MODULE_EXPORT void irmanin_close (Driver *drvthis);
 
17
MODULE_EXPORT const char *irmanin_get_key (Driver *drvthis);
9
18
 
10
19
#endif