smbios.h revision 302408
1276789Sdim/*-
2276789Sdim * Copyright (c) 2015 Rui Paulo <rpaulo@FreeBSD.org>
3276789Sdim * All rights reserved.
4276789Sdim *
5276789Sdim * Redistribution and use in source and binary forms, with or without
6276789Sdim * modification, are permitted provided that the following conditions
7276789Sdim * are met:
8276789Sdim * 1. Redistributions of source code must retain the above copyright
9276789Sdim *    notice, this list of conditions and the following disclaimer.
10276789Sdim * 2. Redistributions in binary form must reproduce the above copyright
11276789Sdim *    notice, this list of conditions and the following disclaimer in the
12276789Sdim *    documentation and/or other materials provided with the distribution.
13276789Sdim *
14276789Sdim * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15276789Sdim * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16276789Sdim * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17276789Sdim * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
18276789Sdim * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19276789Sdim * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
20276789Sdim * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21276789Sdim * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
22276789Sdim * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
23276789Sdim * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
24276789Sdim * POSSIBILITY OF SUCH DAMAGE.
25276789Sdim *
26276789Sdim * $FreeBSD: stable/11/sys/boot/i386/libi386/smbios.h 281138 2015-04-06 06:55:47Z rpaulo $
27276789Sdim */
28276789Sdim#ifndef _SMBIOS_H_
29276789Sdim#define	_SMBIOS_H_
30276789Sdim
31276789Sdimvoid	smbios_detect(const caddr_t);
32276789Sdimint	smbios_match(const char *, const char *, const char *);
33276789Sdim
34276789Sdim#endif /* _SMBIOS_H_ */
35276789Sdim