5 lines
164 B
C++
5 lines
164 B
C++
#pragma once
|
|
#include <cstdint>
|
|
// Only the type name is needed: the MLME never touches PCI.
|
|
namespace Pci { struct PciDevice { uint8_t Bus, Device, Function; }; }
|