mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-22 05:38:14 +00:00
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@1 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
20 lines
412 B
C
20 lines
412 B
C
#ifndef _WRAPPER_H
|
|
#define _WRAPPER_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
typedef struct {
|
|
u_int32_t edi, esi, ebp, esp, ebx, edx, ecx, eax;
|
|
} reg386_t;
|
|
|
|
typedef int (*wrapper_func_t)(void *stack_base, int stack_size, reg386_t *reg, u_int32_t *flags);
|
|
|
|
extern wrapper_func_t report_entry, report_ret;
|
|
|
|
extern void (*wrapper_target)(void);
|
|
|
|
extern int wrapper(void);
|
|
extern int null_call(void);
|
|
|
|
#endif /* _WRAPPER_H */
|
|
|