comparison loader/wrapper.h @ 26045:a8ea87c71d18

Add MPLAYER_ prefix to multiple inclusion guards.
author diego
date Sat, 23 Feb 2008 14:50:55 +0000
parents c98c9e7f3bd0
children 9e739bdb049c
comparison
equal deleted inserted replaced
26044:7a541b991b85 26045:a8ea87c71d18
1 #ifndef WRAPPER_H 1 #ifndef MPLAYER_WRAPPER_H
2 #define WRAPPER_H 2 #define MPLAYER_WRAPPER_H
3 3
4 #include <inttypes.h> 4 #include <inttypes.h>
5 5
6 typedef struct { 6 typedef struct {
7 uint32_t edi, esi, ebp, esp, ebx, edx, ecx, eax; 7 uint32_t edi, esi, ebp, esp, ebx, edx, ecx, eax;
14 extern void (*wrapper_target)(void); 14 extern void (*wrapper_target)(void);
15 15
16 extern int wrapper(void); 16 extern int wrapper(void);
17 extern int null_call(void); 17 extern int null_call(void);
18 18
19 #endif /* WRAPPER_H */ 19 #endif /* MPLAYER_WRAPPER_H */
20 20