mirror of
https://github.com/mpv-player/mpv
synced 2024-12-22 06:42:03 +00:00
0a3901e1ae
Our loader code is not a general-purpose library and not used from C++. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30538 b3059339-0415-0410-9bf9-f77b7e298cf2
14 lines
267 B
C
14 lines
267 B
C
#ifndef MPLAYER_LDT_KEEPER_H
|
|
#define MPLAYER_LDT_KEEPER_H
|
|
|
|
typedef struct {
|
|
void* fs_seg;
|
|
char* prev_struct;
|
|
} ldt_fs_t;
|
|
|
|
void Setup_FS_Segment(void);
|
|
ldt_fs_t* Setup_LDT_Keeper(void);
|
|
void Restore_LDT_Keeper(ldt_fs_t* ldt_fs);
|
|
|
|
#endif /* MPLAYER_LDT_KEEPER_H */
|