arj_xms.h

来自「open arj source」· C头文件 代码 · 共 32 行

H
32
字号
/* * $Id: arj_xms.h,v 1.1.1.1 2002/03/28 00:02:01 andrew_belov Exp $ * --------------------------------------------------------------------------- * Prototypes of the functions located in ARJ_XMS.ASM are declared here. * */#ifndef ARJ_XMS_INCLUDED#define ARJ_XMS_INCLUDED/* XMS memory move structure */struct xms_move{ unsigned long length;                  /* Must be even */ short src_handle;                      /* Source handle */ unsigned long src_offset;              /* Source offset */ short dest_handle;                     /* Destination handle */ unsigned long dest_offset;             /* Destination offset */};/* Prototypes */int detect_xms();void get_xms_entry();int allocate_xms(unsigned short kbs, short *handle);int free_xms(short handle);int move_xms(struct xms_move *xms_mm);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?