1 // Copyright 2017 The Fuchsia Authors 2 // 3 // Use of this source code is governed by a MIT-style 4 // license that can be found in the LICENSE file or at 5 // https://opensource.org/licenses/MIT 6 7 #pragma once 8 9 #include <lib/smbios/smbios.h> 10 11 void pc_init_smbios(); 12 13 // Walk the known SMBIOS structures. The callback will be called once for each 14 // structure found. 15 zx_status_t SmbiosWalkStructs(smbios::StructWalkCallback cb, void* ctx); 16