source: rtems/c/src/lib/libbsp/i386/pc386/console/ps2_drv.h @ debbc9e

4.104.115
Last change on this file since debbc9e was 674be421, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/17/06 at 10:11:37

Remove eof include file

  • Property mode set to 100644
File size: 1.4 KB
Line 
1#ifndef __paux_drv__
2#define __paux_drv__
3/***************************************************************************
4 *
5 * $Header$
6 *
7 * Copyright (c) 1999 ConnectTel, Inc. All Rights Reserved.
8 *
9 * MODULE DESCRIPTION: Prototype routines for the paux driver.
10 *
11 * by: Rosimildo da Silva:
12 *     rdasilva@connecttel.com
13 *     http://www.connecttel.com
14 *
15 ****************************************************************************/
16
17/* functions */
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22/* paux prototype entry points */
23rtems_device_driver paux_initialize(
24  rtems_device_major_number,
25  rtems_device_minor_number,
26  void *
27);
28
29rtems_device_driver paux_open(
30  rtems_device_major_number,
31  rtems_device_minor_number,
32  void *
33);
34
35rtems_device_driver paux_control(
36  rtems_device_major_number,
37  rtems_device_minor_number,
38  void *
39);
40
41rtems_device_driver paux_close(
42  rtems_device_major_number,
43  rtems_device_minor_number,
44  void *
45);
46
47rtems_device_driver paux_read(
48  rtems_device_major_number,
49  rtems_device_minor_number,
50  void *
51);
52
53rtems_device_driver paux_write(
54  rtems_device_major_number,
55  rtems_device_minor_number,
56  void *
57);
58
59rtems_device_driver paux_control(
60  rtems_device_major_number,
61  rtems_device_minor_number,
62  void *
63);
64
65#define PAUX_DRIVER_TABLE_ENTRY \
66  { paux_initialize, paux_open, paux_close, \
67    paux_read, paux_write, paux_control }
68
69#ifdef __cplusplus
70}
71#endif
72
73#endif  /* __paux_drv__  */
Note: See TracBrowser for help on using the repository browser.