Avoid void * arithmetic
[mplayer/glamo.git] / loader / ldt_keeper.h
blobe2626e39b505aa5e1d56c9cbb024d8be73e85301
1 #ifndef LDT_KEEPER_H
2 #define 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 /* LDT_KEEPER_H */