Mercurial > mplayer.hg
view loader/wrapper.h @ 8454:1a558102e0d4
bunkus: Removed "-oac copy" from the mf examples. Removed the paragraph about the "internal lavc controller": the examples right above that paragraph already use this syntax.
author | mosu |
---|---|
date | Sun, 15 Dec 2002 15:42:44 +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 */