~ubuntu-branches/ubuntu/maverick/tvtime/maverick

« back to all changes in this revision

Viewing changes to src/wine/ldt_keeper.h

  • Committer: Bazaar Package Importer
  • Author(s): Simon Law
  • Date: 2004-01-13 18:00:36 UTC
  • Revision ID: james.westby@ubuntu.com-20040113180036-h996q67t476jymsu
Tags: upstream-0.9.12
ImportĀ upstreamĀ versionĀ 0.9.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef LDT_KEEPER_H
 
2
#define 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
  int fd;
 
13
} ldt_fs_t;
 
14
 
 
15
void Setup_FS_Segment(void);
 
16
ldt_fs_t* Setup_LDT_Keeper(void);
 
17
void Check_FS_Segment(void);
 
18
void Restore_LDT_Keeper(ldt_fs_t* ldt_fs);
 
19
#ifdef __cplusplus
 
20
}
 
21
#endif
 
22
 
 
23
#endif /* LDT_KEEPER_H */