1262744Stychon/*-
2262744Stychon * Copyright (c) 2014 Tycho Nightingale <tycho.nightingale@pluribusnetworks.com>
3262744Stychon * All rights reserved.
4262744Stychon *
5262744Stychon * Redistribution and use in source and binary forms, with or without
6262744Stychon * modification, are permitted provided that the following conditions
7262744Stychon * are met:
8262744Stychon * 1. Redistributions of source code must retain the above copyright
9262744Stychon *    notice, this list of conditions and the following disclaimer.
10262744Stychon * 2. Redistributions in binary form must reproduce the above copyright
11262744Stychon *    notice, this list of conditions and the following disclaimer in the
12262744Stychon *    documentation and/or other materials provided with the distribution.
13262744Stychon *
14262744Stychon * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
15262744Stychon * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16262744Stychon * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17262744Stychon * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18262744Stychon * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19262744Stychon * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20262744Stychon * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21262744Stychon * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22262744Stychon * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23262744Stychon * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24262744Stychon * SUCH DAMAGE.
25262744Stychon *
26262744Stychon * $FreeBSD: releng/11.0/usr.sbin/bhyve/smbiostbl.h 262744 2014-03-04 17:12:06Z tychon $
27262744Stychon */
28262744Stychon
29262744Stychon#ifndef _SMBIOSTBL_H_
30262744Stychon#define _SMBIOSTBL_H_
31262744Stychon
32262744Stychonstruct vmctx;
33262744Stychon
34262744Stychonint	smbios_build(struct vmctx *ctx);
35262744Stychon
36262744Stychon#endif /* _SMBIOSTBL_H_ */
37