repo.or.cz
/
mplayer
/
glamo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
typo fixes
[mplayer/glamo.git]
/
loader
/
ldt_keeper.h
blob
c339987635ca54d463b95a675e4c15c1c6d10acc
1
#ifndef MPLAYER_LDT_KEEPER_H
2
#define MPLAYER_LDT_KEEPER_H
3
4
#ifdef __cplusplus
5
extern
"C"
6
{
7
#endif
8
9
typedef
struct
{
10
void
*
fs_seg
;
11
char
*
prev_struct
;
12
}
ldt_fs_t
;
13
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
18
}
19
#endif
20
21
#endif
/* MPLAYER_LDT_KEEPER_H */