~benklop/+junk/lcdproc

« back to all changes in this revision

Viewing changes to server/drivers/hd44780-usblcd.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Oxer
  • Date: 2004-05-19 21:32:59 UTC
  • Revision ID: james.westby@ubuntu.com-20040519213259-iipx6m4xlwap50w7
Tags: 0.4.5-1
* New upstream release which fixes two buffer overflow / string
  format vulnerabilities. By the way, yes I know this package is
  'native' when it should be 'normal', but I'll fix that with
  another upload because I want to get this security update done
  ASAP since upstream indicate it's a serious problem.
* Fixed location of example client 'metar.pl'.
  Closes: #249770

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef HD_USBLCD_H
 
2
#define HD_USBLCD_H
 
3
 
 
4
#include "lcd.h"                          /* for lcd_logical_driver */
 
5
#include "hd44780-low.h"                  /* for HD44780_functions */
 
6
 
 
7
// initialise this particular driver, args is probably not used but keep
 
8
// for consistency
 
9
int hd_init_usblcd (HD44780_functions * hd44780_functions, lcd_logical_driver * driver, char *args, unsigned int port);
 
10
 
 
11
#endif