Mercurial > mplayer.hg
view loader/wrapper.h @ 11681:4204af4b61a1
VAX architecture support (tested on VAXstation 4000/VLC)
author | gabucino |
---|---|
date | Thu, 25 Dec 2003 12:05:28 +0000 |
parents | 8b905703a450 |
children | ee76aa308c0a |
line wrap: on
line source
#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 */