ldt_keeper.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:0k
源码类别:

midi

开发平台:

Unix_Linux

  1. #ifndef LDT_KEEPER_H
  2. #define LDT_KEEPER_H
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7. typedef struct {
  8.   void* fs_seg;
  9.   char* prev_struct;
  10.   int fd;
  11. } ldt_fs_t;
  12. void Setup_FS_Segment(void);
  13. ldt_fs_t* Setup_LDT_Keeper(void);
  14. void Restore_LDT_Keeper(ldt_fs_t* ldt_fs);
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif /* LDT_KEEPER_H */