home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / warptlk3.zip / TOOLKIT / SAMPLES / OS2 / QUEUES / QUEUE.H < prev    next >
Text File  |  1995-08-24  |  577b  |  20 lines

  1. /*==============================================================*\
  2.  *  queue.h - Sample queue apps include file
  3.  *      Copyright 1991 IBM Corp.
  4.  *--------------------------------------------------------------
  5.  *
  6.  *  This file contains constant and function
  7.  *  definitions for queues.
  8.  *
  9. \*==============================================================*/
  10. #define TIMEOUT_LEN  (ULONG)1000
  11. #define Q_NAME       "BUYIBM"
  12. #define Q_MSG_DATE   1
  13. #define Q_MSG_TEXT   2
  14.  
  15. typedef struct _Q_DATE {
  16.    USHORT  usDay;
  17.    USHORT  usMonth;
  18.    USHORT  usYear;
  19. } Q_DATE;
  20.