~ubuntu-branches/ubuntu/precise/gnomeradio/precise-updates

« back to all changes in this revision

Viewing changes to src/lirc.h

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Namuri
  • Date: 2008-05-12 00:36:27 UTC
  • mfrom: (2.1.5 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080512003627-m4r405wwqc2e3xgv
Tags: 1.7-6
* debian/changelog: sync with the one from ubuntu.
* debian/patches/prefs.c.patch: fixed. In 1.7-6 I've uploaded a wrong
  version of the patch, now it's the right one that Cesare Tirabassi
  has included in the ubuntu's package. (Closes: #468796, #462891)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
#ifndef _LIRC_H
18
18
#define _LIRC_H
19
19
 
20
 
#include <fcntl.h>
21
 
#include <gnome.h>
22
 
 
23
 
#ifdef HAVE_LIRC
24
 
 
25
 
#include <lirc/lirc_client.h>
26
 
 
27
 
#endif
28
 
 
29
20
int my_lirc_init(void);
30
21
 
31
22
void my_lirc_deinit(void);
33
24
void start_lirc(void);
34
25
 
35
26
#endif
36