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