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.

biosint.h 392B

123456789101112131415161718
  1. #ifndef BIOSINT_H
  2. #define BIOSINT_H
  3. /**
  4. * @file BIOS interrupts
  5. *
  6. */
  7. struct segoff;
  8. extern int hooked_bios_interrupts;
  9. extern void hook_bios_interrupt ( unsigned int interrupt, unsigned int handler,
  10. struct segoff *chain_vector );
  11. extern int unhook_bios_interrupt ( unsigned int interrupt,
  12. unsigned int handler,
  13. struct segoff *chain_vector );
  14. #endif /* BIOSINT_H */