home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12442.ZIP / MSGQ.H < prev    next >
Text File  |  1989-07-31  |  286b  |  13 lines

  1. /* msgq.h RHS 7/15/89
  2.  *
  3.  * Message Queue prototypes
  4.  */
  5.  
  6. void MsgQCreate(HQUEUE *qhandle, char *qname);
  7. void MsgQOpen(HQUEUE *qhandle, char *qname);
  8. void MsgQSend(HQUEUE qhandle, USHORT event);
  9. void MsgQClose(HQUEUE qhandle);
  10. void MsgQGet(HQUEUE qhandle, USHORT *event);
  11.  
  12.  
  13.