You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pxe_call.h 470B

123456789101112131415161718192021222324
  1. #ifndef _PXE_CALL_H
  2. #define _PXE_CALL_H
  3. /** @file
  4. *
  5. * PXE API entry point
  6. */
  7. #include <pxe_api.h>
  8. #include <realmode.h>
  9. /** !PXE structure */
  10. extern struct s_PXE __text16 ( ppxe );
  11. #define ppxe __use_text16 ( ppxe )
  12. /** PXENV+ structure */
  13. extern struct s_PXENV __text16 ( pxenv );
  14. #define pxenv __use_text16 ( pxenv )
  15. extern void pxe_hook_int1a ( void );
  16. extern int pxe_unhook_int1a ( void );
  17. extern void pxe_init_structures ( void );
  18. #endif /* _PXE_CALL_H */