na.h 267 B

12345678910111213
  1. #ifndef NA_H
  2. #define NA_H
  3. struct na_patch {
  4. unsigned lwoff;
  5. unsigned char type;
  6. };
  7. int na_fixup(unsigned long *script, unsigned long pa_script, unsigned long pa_reg,
  8. struct na_patch *patch, int patches,
  9. int (*externval)(int x, unsigned long *v));
  10. #endif