annotate loader/ldt_keeper.h @ 15415:c73564d69136
1.891: vstrict vs mjpeg update, typo
1.892: sync to x264 r137: adaptive B-frame decision, flush delayed frames
1.893: missing linebreak (skipped)
1.894: Move audio filter descriptions to the man page.
1.895: changed noreorder to reorder in mpegopts (ordering disabled by default) (skipped)
1.897: both reorder and noreorder flags are now available (skipped)
1.898: Document reorder and noreorder as (no)reorder. (skipped, last three were fixed prviously)
1.899: where the hell they got these infos from (native-endianness)
author |
kraymer |
date |
Wed, 11 May 2005 20:57:28 +0000 |
parents |
174e2a58b4cd |
children |
2de480457872 |
rev |
line source |
2067
|
1 #ifndef LDT_KEEPER_H
|
|
2 #define LDT_KEEPER_H
|
|
3
|
|
4 #ifdef __cplusplus
|
|
5 extern "C"
|
|
6 {
|
|
7 #endif
|
7386
|
8
|
|
9 typedef struct {
|
|
10 void* fs_seg;
|
|
11 char* prev_struct;
|
|
12 int fd;
|
|
13 } ldt_fs_t;
|
|
14
|
2067
|
15 void Setup_FS_Segment(void);
|
7386
|
16 ldt_fs_t* Setup_LDT_Keeper(void);
|
|
17 void Restore_LDT_Keeper(ldt_fs_t* ldt_fs);
|
2067
|
18 #ifdef __cplusplus
|
|
19 }
|
|
20 #endif
|
|
21
|
|
22 #endif /* LDT_KEEPER_H */
|