1
mirror of https://github.com/mpv-player/mpv synced 2024-09-05 02:48:21 +02:00
mpv/loader/wrapper.h
diego bb7b132e08 Add MPLAYER_ prefix to multiple inclusion guards.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26077 b3059339-0415-0410-9bf9-f77b7e298cf2
2008-02-23 14:50:55 +00:00

21 lines
430 B
C

#ifndef MPLAYER_WRAPPER_H
#define MPLAYER_WRAPPER_H
#include <inttypes.h>
typedef struct {
uint32_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, uint32_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 /* MPLAYER_WRAPPER_H */