18 lines
354 B
C
18 lines
354 B
C
#ifndef GRUB_INTERFACE_HEADER
|
|
#define GRUB_INTERFACE_HEADER
|
|
#include <grub/net.h>
|
|
#include <grub/net/protocol.h>
|
|
/*
|
|
extern struct grub_net_topprotocol;
|
|
|
|
struct grub_net_interface
|
|
{
|
|
struct grub_net_card *card;
|
|
struct grub_net_topprotocol* topprot;
|
|
struct grub_net_addr *tla;
|
|
struct grub_net_addr *ila;
|
|
struct grub_net_addr *lla;
|
|
};
|
|
*/
|
|
#endif
|