選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

efi_pxe.h 353B

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 */