home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 3 Comm / 03-Comm.zip / COMTALK.ZIP / CIRCLEQ.H < prev    next >
Text File  |  1989-02-08  |  465b  |  22 lines

  1. /*
  2.     Remember to include global.h first
  3. */
  4. /*
  5.     Define queue specifications
  6. */
  7. #define    QUEUESIZE    150
  8. /*
  9.     Define queue element type -- in global.h
  10. */
  11. /*
  12.     Queue manipulation macros and functions
  13. */
  14. void QueInit(void);
  15. void QueAdvance(int n);
  16. Line QueQuery(int LineNum);
  17. BOOL QueInsertLine(Line pli);
  18. BOOL QueCompleteLine(void);
  19. int  QueUpdateHead(int nRows, BOOL bPage, BOOL bPaging);
  20. Line QueLastLine(void);
  21. int  QuePageUp(int nRows);
  22.