aboutsummaryrefslogtreecommitdiff
path: root/src/sane-rules.h
blob: 356acc655a8ae0c0e3e1cef4165fbf95e425e1fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
                                             

void populate_usb_scanners (GHashTable* scanners)
{
  GList* epson = NULL;
  // For testing
  epson = g_list_append (epson, g_strdup("0001"));
  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));
}