Line |
Branch |
Exec |
Source |
1 |
|
|
#include <glib-object.h> |
2 |
|
|
#include "fpi-context.h" |
3 |
|
|
|
4 |
|
|
extern GType (fpi_device_upektc_img_get_type) (void); |
5 |
|
|
extern GType (fpi_device_vfs5011_get_type) (void); |
6 |
|
|
extern GType (fpi_device_vfs7552_get_type) (void); |
7 |
|
|
extern GType (fpi_device_aes3500_get_type) (void); |
8 |
|
|
extern GType (fpi_device_aes4000_get_type) (void); |
9 |
|
|
extern GType (fpi_device_aes1610_get_type) (void); |
10 |
|
|
extern GType (fpi_device_aes1660_get_type) (void); |
11 |
|
|
extern GType (fpi_device_aes2660_get_type) (void); |
12 |
|
|
extern GType (fpi_device_aes2501_get_type) (void); |
13 |
|
|
extern GType (fpi_device_aes2550_get_type) (void); |
14 |
|
|
extern GType (fpi_device_vfs101_get_type) (void); |
15 |
|
|
extern GType (fpi_device_vfs301_get_type) (void); |
16 |
|
|
extern GType (fpi_device_vfs0050_get_type) (void); |
17 |
|
|
extern GType (fpi_device_etes603_get_type) (void); |
18 |
|
|
extern GType (fpi_device_egis0570_get_type) (void); |
19 |
|
|
extern GType (fpi_device_egismoc_get_type) (void); |
20 |
|
|
extern GType (fpi_device_vcom5s_get_type) (void); |
21 |
|
|
extern GType (fpi_device_synaptics_get_type) (void); |
22 |
|
|
extern GType (fpi_device_elan_get_type) (void); |
23 |
|
|
extern GType (fpi_device_elanmoc_get_type) (void); |
24 |
|
|
extern GType (fpi_device_uru4000_get_type) (void); |
25 |
|
|
extern GType (fpi_device_upektc_get_type) (void); |
26 |
|
|
extern GType (fpi_device_upeksonly_get_type) (void); |
27 |
|
|
extern GType (fpi_device_upekts_get_type) (void); |
28 |
|
|
extern GType (fpi_device_goodixmoc_get_type) (void); |
29 |
|
|
extern GType (fpi_device_nb1010_get_type) (void); |
30 |
|
|
extern GType (fpi_device_fpcmoc_get_type) (void); |
31 |
|
|
extern GType (fpi_device_realtek_get_type) (void); |
32 |
|
|
extern GType (fpi_device_focaltech_moc_get_type) (void); |
33 |
|
|
extern GType (fpi_device_elanspi_get_type) (void); |
34 |
|
|
extern GType (fpi_device_virtual_image_get_type) (void); |
35 |
|
|
extern GType (fpi_device_virtual_device_get_type) (void); |
36 |
|
|
extern GType (fpi_device_virtual_device_storage_get_type) (void); |
37 |
|
|
|
38 |
|
|
GArray * |
39 |
|
144 |
fpi_get_driver_types (void) |
40 |
|
|
{ |
41 |
|
144 |
GArray *drivers = g_array_new (TRUE, FALSE, sizeof (GType)); |
42 |
|
144 |
GType t; |
43 |
|
|
|
44 |
|
144 |
t = fpi_device_upektc_img_get_type (); |
45 |
|
144 |
g_array_append_val (drivers, t); |
46 |
|
|
|
47 |
|
144 |
t = fpi_device_vfs5011_get_type (); |
48 |
|
144 |
g_array_append_val (drivers, t); |
49 |
|
|
|
50 |
|
144 |
t = fpi_device_vfs7552_get_type (); |
51 |
|
144 |
g_array_append_val (drivers, t); |
52 |
|
|
|
53 |
|
144 |
t = fpi_device_aes3500_get_type (); |
54 |
|
144 |
g_array_append_val (drivers, t); |
55 |
|
|
|
56 |
|
144 |
t = fpi_device_aes4000_get_type (); |
57 |
|
144 |
g_array_append_val (drivers, t); |
58 |
|
|
|
59 |
|
144 |
t = fpi_device_aes1610_get_type (); |
60 |
|
144 |
g_array_append_val (drivers, t); |
61 |
|
|
|
62 |
|
144 |
t = fpi_device_aes1660_get_type (); |
63 |
|
144 |
g_array_append_val (drivers, t); |
64 |
|
|
|
65 |
|
144 |
t = fpi_device_aes2660_get_type (); |
66 |
|
144 |
g_array_append_val (drivers, t); |
67 |
|
|
|
68 |
|
144 |
t = fpi_device_aes2501_get_type (); |
69 |
|
144 |
g_array_append_val (drivers, t); |
70 |
|
|
|
71 |
|
144 |
t = fpi_device_aes2550_get_type (); |
72 |
|
144 |
g_array_append_val (drivers, t); |
73 |
|
|
|
74 |
|
144 |
t = fpi_device_vfs101_get_type (); |
75 |
|
144 |
g_array_append_val (drivers, t); |
76 |
|
|
|
77 |
|
144 |
t = fpi_device_vfs301_get_type (); |
78 |
|
144 |
g_array_append_val (drivers, t); |
79 |
|
|
|
80 |
|
144 |
t = fpi_device_vfs0050_get_type (); |
81 |
|
144 |
g_array_append_val (drivers, t); |
82 |
|
|
|
83 |
|
144 |
t = fpi_device_etes603_get_type (); |
84 |
|
144 |
g_array_append_val (drivers, t); |
85 |
|
|
|
86 |
|
144 |
t = fpi_device_egis0570_get_type (); |
87 |
|
144 |
g_array_append_val (drivers, t); |
88 |
|
|
|
89 |
|
144 |
t = fpi_device_egismoc_get_type (); |
90 |
|
144 |
g_array_append_val (drivers, t); |
91 |
|
|
|
92 |
|
144 |
t = fpi_device_vcom5s_get_type (); |
93 |
|
144 |
g_array_append_val (drivers, t); |
94 |
|
|
|
95 |
|
144 |
t = fpi_device_synaptics_get_type (); |
96 |
|
144 |
g_array_append_val (drivers, t); |
97 |
|
|
|
98 |
|
144 |
t = fpi_device_elan_get_type (); |
99 |
|
144 |
g_array_append_val (drivers, t); |
100 |
|
|
|
101 |
|
144 |
t = fpi_device_elanmoc_get_type (); |
102 |
|
144 |
g_array_append_val (drivers, t); |
103 |
|
|
|
104 |
|
144 |
t = fpi_device_uru4000_get_type (); |
105 |
|
144 |
g_array_append_val (drivers, t); |
106 |
|
|
|
107 |
|
144 |
t = fpi_device_upektc_get_type (); |
108 |
|
144 |
g_array_append_val (drivers, t); |
109 |
|
|
|
110 |
|
144 |
t = fpi_device_upeksonly_get_type (); |
111 |
|
144 |
g_array_append_val (drivers, t); |
112 |
|
|
|
113 |
|
144 |
t = fpi_device_upekts_get_type (); |
114 |
|
144 |
g_array_append_val (drivers, t); |
115 |
|
|
|
116 |
|
144 |
t = fpi_device_goodixmoc_get_type (); |
117 |
|
144 |
g_array_append_val (drivers, t); |
118 |
|
|
|
119 |
|
144 |
t = fpi_device_nb1010_get_type (); |
120 |
|
144 |
g_array_append_val (drivers, t); |
121 |
|
|
|
122 |
|
144 |
t = fpi_device_fpcmoc_get_type (); |
123 |
|
144 |
g_array_append_val (drivers, t); |
124 |
|
|
|
125 |
|
144 |
t = fpi_device_realtek_get_type (); |
126 |
|
144 |
g_array_append_val (drivers, t); |
127 |
|
|
|
128 |
|
144 |
t = fpi_device_focaltech_moc_get_type (); |
129 |
|
144 |
g_array_append_val (drivers, t); |
130 |
|
|
|
131 |
|
144 |
t = fpi_device_elanspi_get_type (); |
132 |
|
144 |
g_array_append_val (drivers, t); |
133 |
|
|
|
134 |
|
144 |
t = fpi_device_virtual_image_get_type (); |
135 |
|
144 |
g_array_append_val (drivers, t); |
136 |
|
|
|
137 |
|
144 |
t = fpi_device_virtual_device_get_type (); |
138 |
|
144 |
g_array_append_val (drivers, t); |
139 |
|
|
|
140 |
|
144 |
t = fpi_device_virtual_device_storage_get_type (); |
141 |
|
144 |
g_array_append_val (drivers, t); |
142 |
|
|
|
143 |
|
144 |
return drivers; |
144 |
|
|
} |
145 |
|
|
|