18 lines
311 B
C++
18 lines
311 B
C++
|
|
#pragma once
|
|
|
|
#if !defined(BAD_APPLE_OS_DRIVERS_USB_HPP_INCLUDED)
|
|
#define BAD_APPLE_OS_DRIVERS_USB_HPP_INCLUDED
|
|
|
|
namespace baos::pci
|
|
{
|
|
struct Header;
|
|
}
|
|
|
|
namespace baos::usb
|
|
{
|
|
[[nodiscard]] bool initController(const pci::Header& pciHeader) noexcept;
|
|
}
|
|
|
|
#endif // !defined(BAD_APPLE_OS_DRIVERS_USB_HPP_INCLUDED)
|