summaryrefslogtreecommitdiff
path: root/dmioem.h
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2007-02-11 16:17:55 +0000
committerJean Delvare <jdelvare@suse.de>2007-02-11 16:17:55 +0000
commit4b3c8b16bc31b9b69e6c18fc3a5c98ae059e338f (patch)
treef5aa2d40f242442b51f45d004b951c801980647f /dmioem.h
parent7c97310806ede362ce12953070fc73df28724a67 (diff)
downloaddmidecode-git-4b3c8b16bc31b9b69e6c18fc3a5c98ae059e338f.tar.gz
Move the decoding of OEM-specific entries to a separate source file.
Diffstat (limited to 'dmioem.h')
-rw-r--r--dmioem.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/dmioem.h b/dmioem.h
new file mode 100644
index 0000000..00483f2
--- /dev/null
+++ b/dmioem.h
@@ -0,0 +1,25 @@
+/*
+ * Decoding of OEM-specific entries
+ * This file is part of the dmidecode project.
+ *
+ * (C) 2007 Jean Delvare <khali@linux-fr.org>
+ *
+ * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+struct dmi_header;
+
+void dmi_set_vendor(const char *s);
+int dmi_decode_oem(struct dmi_header *h);