blob: fc43e397d60f8a2f4389208c4507e4873206d585 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
void populate_usb_scanners (GHashTable* scanners)
{
GList* epson = NULL;
epson = g_list_append (epson, g_strdup("0101"));
epson = g_list_append (epson, g_strdup("0103"));
epson = g_list_append (epson, g_strdup("0104"));
epson = g_list_append (epson, g_strdup("0105"));
epson = g_list_append (epson, g_strdup("0106"));
epson = g_list_append (epson, g_strdup("0107"));
epson = g_list_append (epson, g_strdup("0109"));
epson = g_list_append (epson, g_strdup("010a"));
epson = g_list_append (epson, g_strdup("010b"));
g_hash_table_insert (scanners,
g_strdup("04b8"),
g_list_copy(epson));
}
|