⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pr_pc.h

📁 这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自测试~但就算用来做参考资料也是非常好的
💻 H
字号:
/* * Copyright (C) Eicon Technology Corporation, 2000. * * Eicon File Revision :    1.0   * * This software may be used and distributed according to the terms * of the GNU General Public License, incorporated herein by reference. * */#if !defined(PR_PC_H)#define PR_PC_Hstruct pr_ram {  word NextReq;         /* pointer to next Req Buffer               */  word NextRc;          /* pointer to next Rc Buffer                */  word NextInd;         /* pointer to next Ind Buffer               */  byte ReqInput;        /* number of Req Buffers sent               */  byte ReqOutput;       /* number of Req Buffers returned           */  byte ReqReserved;     /* number of Req Buffers reserved           */  byte Int;             /* ISDN-P interrupt                         */  byte XLock;           /* Lock field for arbitration               */  byte RcOutput;        /* number of Rc buffers received            */  byte IndOutput;       /* number of Ind buffers received           */  byte IMask;           /* Interrupt Mask Flag                      */  byte Reserved1[2];    /* reserved field, do not use               */  byte ReadyInt;        /* request field for ready interrupt        */  byte Reserved2[12];   /* reserved field, do not use               */  byte InterfaceType;   /* interface type 1=16K interface           */  word Signature;       /* ISDN-P initialized indication            */  byte B[1];            /* buffer space for Req,Ind and Rc          */};typedef struct {  word next;  byte Req;  byte ReqId;  byte ReqCh;  byte Reserved1;  word Reference;  byte Reserved[8];  PBUFFER XBuffer;} REQ;typedef struct {  word next;  byte Rc;  byte RcId;  byte RcCh;  byte Reserved1;  word Reference;  byte Reserved2[8];} RC;typedef struct {  word next;  byte Ind;  byte IndId;  byte IndCh;  byte MInd;  word MLength;  word Reference;  byte RNR;  byte Reserved;  dword Ack;  PBUFFER RBuffer;} IND;#endif

⌨️ 快捷键说明

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