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.

hooks.h 389B

1234567891011121314
  1. #ifndef HOOKS_H
  2. #define HOOKS_H
  3. /* in hooks.o */
  4. extern void arch_initialise ( struct i386_all_regs *regs,
  5. void (*retaddr) (void) );
  6. extern void arch_main ( struct i386_all_regs *regs );
  7. /* in hooks_rm.o */
  8. extern void arch_rm_initialise ( struct i386_all_regs *regs,
  9. void (*retaddr) (void) );
  10. extern void arch_rm_main ( struct i386_all_regs *regs );
  11. #endif /* HOOKS_H */