File: wrapper.h

package info (click to toggle)
bml 0.5.0-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 5,416 kB
  • ctags: 11,582
  • sloc: ansic: 21,019; sh: 10,393; cpp: 3,964; makefile: 143; asm: 116
file content (20 lines) | stat: -rw-r--r-- 318 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _WRAPPER_H
#define _WRAPPER_H

#include <sys/types.h>

#if defined(__sun)
typedef uint32_t u_int32_t;
#endif

typedef struct {
  u_int32_t edi, esi, ebp, esp, ebx, edx, ecx, eax;
} reg386_t;

extern void (*wrapper_target)(void);

extern int wrapper(void);
extern int null_call(void);

#endif /* _WRAPPER_H */