~ubuntu-branches/ubuntu/lucid/acpid/lucid-updates

« back to all changes in this revision

Viewing changes to ng/acpid/include/acpid/driver/evdev.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Meskes
  • Date: 2009-11-17 14:50:01 UTC
  • mfrom: (2.1.12 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091117145001-y5hevyg7gcg6uwjk
Tags: 1.0.10-4
Updated netlink patch to version 6.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef __ACPID_DRIVER_EVDEV__
 
3
#define __ACPID_DRIVER_EVDEV__
 
4
 
 
5
#include <acpid/driver.h>
 
6
 
 
7
#include <sys/types.h>
 
8
#include <sys/stat.h>
 
9
#include <fcntl.h>
 
10
#include <unistd.h>
 
11
#include <stdio.h>
 
12
#include <string.h>
 
13
#include <linux/input.h>
 
14
#include <stdlib.h>
 
15
 
 
16
struct acpi_channel_private {
 
17
        int fd;
 
18
        char hid[32];
 
19
};
 
20
 
 
21
#endif /* __ACPID_DRIVER_EVDEV__ */
 
22