summaryrefslogtreecommitdiffstats
path: root/names.h
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2009-06-25 16:05:58 +0000
committerPascal Terjan <pterjan@mandriva.org>2009-06-25 16:05:58 +0000
commit966921b2d044f2e623a3957db05ee3ecda34ca7b (patch)
treee63ae351d56ca28c414a1de75b58607830ed1496 /names.h
parent0e8660e859d9d5c035db74713c727fdb52703c4c (diff)
downloadldetect-966921b2d044f2e623a3957db05ee3ecda34ca7b.tar
ldetect-966921b2d044f2e623a3957db05ee3ecda34ca7b.tar.gz
ldetect-966921b2d044f2e623a3957db05ee3ecda34ca7b.tar.bz2
ldetect-966921b2d044f2e623a3957db05ee3ecda34ca7b.tar.xz
ldetect-966921b2d044f2e623a3957db05ee3ecda34ca7b.zip
Use usb.ids
Diffstat (limited to 'names.h')
-rw-r--r--names.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/names.h b/names.h
new file mode 100644
index 0000000..2cde891
--- /dev/null
+++ b/names.h
@@ -0,0 +1,52 @@
+/*****************************************************************************/
+
+/*
+ * names.h -- USB name database manipulation routines
+ *
+ * Copyright (C) 1999, 2000 Thomas Sailer (sailer@ife.ee.ethz.ch)
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ *
+ */
+
+/*****************************************************************************/
+
+#ifndef _NAMES_H
+#define _NAMES_H
+
+#include <sys/types.h>
+
+/* ---------------------------------------------------------------------- */
+
+extern const char *names_vendor(u_int16_t vendorid);
+extern const char *names_product(u_int16_t vendorid, u_int16_t productid);
+extern const char *names_class(u_int8_t classid);
+extern const char *names_subclass(u_int8_t classid, u_int8_t subclassid);
+extern const char *names_protocol(u_int8_t classid, u_int8_t subclassid, u_int8_t protocolid);
+extern const char *names_audioterminal(u_int16_t termt);
+extern const char *names_videoterminal(u_int16_t termt);
+extern const char *names_hid(u_int8_t hidd);
+extern const char *names_reporttag(u_int8_t rt);
+extern const char *names_huts(unsigned int data);
+extern const char *names_hutus(unsigned int data);
+extern const char *names_langid(u_int16_t langid);
+extern const char *names_physdes(u_int8_t ph);
+extern const char *names_bias(u_int8_t b);
+extern const char *names_countrycode(unsigned int countrycode);
+extern int names_init(char *n);
+
+/* ---------------------------------------------------------------------- */
+#endif /* _NAMES_H */