home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12518.ZIP / MSGQ.H < prev    next >
Text File  |  1989-10-12  |  340b  |  14 lines

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