Static pthread support
[mplayer/kovensky.git] / loader / ldt_keeper.h
blobc339987635ca54d463b95a675e4c15c1c6d10acc
1 #ifndef MPLAYER_LDT_KEEPER_H
2 #define MPLAYER_LDT_KEEPER_H
4 #ifdef __cplusplus
5 extern "C"
7 #endif
9 typedef struct {
10 void* fs_seg;
11 char* prev_struct;
12 } ldt_fs_t;
14 void Setup_FS_Segment(void);
15 ldt_fs_t* Setup_LDT_Keeper(void);
16 void Restore_LDT_Keeper(ldt_fs_t* ldt_fs);
17 #ifdef __cplusplus
19 #endif
21 #endif /* MPLAYER_LDT_KEEPER_H */