Home | History | Annotate | Download | only in sys
      1 #ifndef _GPXE_H
      2 #define _GPXE_H
      3 
      4 #include <com32.h>
      5 
      6 struct s_PXENV_FILE_CHECK_API {
      7     uint16_t Status;
      8     uint16_t Size;
      9     uint32_t Magic;
     10     uint32_t Provider;
     11     uint32_t APIMask;
     12     uint32_t Flags;
     13 };
     14 
     15 bool is_gpxe(void);
     16 #endif
     17