Mercurial > mplayer.hg
view loader/wrapper.h @ 9323:774afe44f17b
some more info (copy & pasted from ML)
replacing zero terminated strings with length + string so it can allso contain binary data
adding a type to every entry in the info_packet
changing the fourcc storage type from v to b, that way it can be read with a hex editor
author | michael |
---|---|
date | Fri, 07 Feb 2003 21:35:39 +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 */