xbmc
ldt_keeper.h
1 
13 /* applied some modification to make make our xine friend more happy */
14 
15 /*
16  * Modified for use with MPlayer, detailed changelog at
17  * http://svn.mplayerhq.hu/mplayer/trunk/
18  * $Id: ldt_keeper.c 22733 2007-03-18 22:18:11Z nicodvb $
19  */
20 
21 #ifdef __cplusplus
22 extern "C"
23 {
24 #endif
25 
26 typedef struct {
27  void* fs_seg;
28  char* prev_struct;
29  int fd;
30 } ldt_fs_t;
31 
32 void Setup_FS_Segment(void);
33 ldt_fs_t* Setup_LDT_Keeper(void);
34 void Restore_LDT_Keeper(ldt_fs_t* ldt_fs);
35 #ifdef __cplusplus
36 }
37 #endif
38 
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! This file MUST be in main library because LDT must...
Definition: ldt_keeper.h:26