Huge monster patch that removes unnessary headers
[comedi.git] / comedi / comedi_ksyms.c
1 /*
2     module/exp_ioctl.c
3     exported comedi functions
4
5     COMEDI - Linux Control and Measurement Device Interface
6     Copyright (C) 1997-8 David A. Schleef <ds@schleef.org>
7
8     This program is free software; you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by
10     the Free Software Foundation; either version 2 of the License, or
11     (at your option) any later version.
12
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17
18     You should have received a copy of the GNU General Public License
19     along with this program; if not, write to the Free Software
20     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22 */
23
24
25 #define __NO_VERSION__
26 #include <linux/comedidev.h>
27
28
29
30
31 #if LINUX_VERSION_CODE >= 0x020200
32
33 /* for drivers */
34 EXPORT_SYMBOL(comedi_driver_register);
35 EXPORT_SYMBOL(comedi_driver_unregister);
36 EXPORT_SYMBOL(comedi_allocate_dev);
37 EXPORT_SYMBOL(comedi_deallocate_dev);
38 //EXPORT_SYMBOL(comedi_bufcheck);
39 //EXPORT_SYMBOL(comedi_done);
40 //EXPORT_SYMBOL(comedi_error_done);
41 EXPORT_SYMBOL(comedi_error);
42 //EXPORT_SYMBOL(comedi_eobuf);
43 //EXPORT_SYMBOL(comedi_eos);
44 EXPORT_SYMBOL(comedi_event);
45 EXPORT_SYMBOL(range_bipolar10);
46 EXPORT_SYMBOL(range_bipolar5);
47 EXPORT_SYMBOL(range_bipolar2_5);
48 EXPORT_SYMBOL(range_unipolar10);
49 EXPORT_SYMBOL(range_unipolar5);
50 EXPORT_SYMBOL(range_unknown);
51 #ifdef CONFIG_COMEDI_RT
52 EXPORT_SYMBOL(comedi_free_irq);
53 EXPORT_SYMBOL(comedi_request_irq);
54 EXPORT_SYMBOL(comedi_switch_to_rt);
55 EXPORT_SYMBOL(comedi_switch_to_non_rt);
56 EXPORT_SYMBOL(rt_pend_call);
57 #endif
58 #ifdef CONFIG_COMEDI_DEBUG
59 EXPORT_SYMBOL(comedi_debug);
60 #endif
61
62 /* for kcomedilib */
63 EXPORT_SYMBOL(comedi_devices);
64 EXPORT_SYMBOL(big_comedi_lock);
65 EXPORT_SYMBOL(check_chanlist);
66
67 EXPORT_SYMBOL(comedi_buf_put);
68 EXPORT_SYMBOL(comedi_buf_get);
69 EXPORT_SYMBOL(comedi_buf_read_n_available);
70 EXPORT_SYMBOL(comedi_buf_write_free);
71 EXPORT_SYMBOL(comedi_buf_munge);
72 EXPORT_SYMBOL(comedi_buf_write_alloc);
73 EXPORT_SYMBOL(comedi_buf_read_free);
74 EXPORT_SYMBOL(comedi_buf_memcpy_to);
75 EXPORT_SYMBOL(comedi_buf_memcpy_from);
76 #endif
77
78
79