Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617
  1. #ifndef _IPXE_EFI_PXE_H
  2. #define _IPXE_EFI_PXE_H
  3. /** @file
  4. *
  5. * EFI PXE base code protocol
  6. */
  7. #include <ipxe/efi/efi.h>
  8. #include <ipxe/netdevice.h>
  9. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  10. extern int efi_pxe_install ( EFI_HANDLE handle, struct net_device *netdev );
  11. extern void efi_pxe_uninstall ( EFI_HANDLE handle );
  12. #endif /* _IPXE_EFI_PXE_H */