input: fix possible crash in printing key combo names
[mplayer.git] / loader / ldt_keeper.h
blobcdcccc8055e9d70a8fa788fc589e07fcbcafa711
1 #ifndef MPLAYER_LDT_KEEPER_H
2 #define MPLAYER_LDT_KEEPER_H
4 extern void *fs_seg;
6 typedef struct {
7 void* fs_seg;
8 char* prev_struct;
9 } ldt_fs_t;
11 void Setup_FS_Segment(void);
12 ldt_fs_t* Setup_LDT_Keeper(void);
13 void Restore_LDT_Keeper(ldt_fs_t* ldt_fs);
15 #endif /* MPLAYER_LDT_KEEPER_H */