home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prog_pm / chap02 / wel.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-01-09  |  403 b   |  19 lines

  1. /*-------------------------------------------------
  2.    WEL.C -- A Program that Creates a Message Queue
  3.   -------------------------------------------------*/
  4.  
  5. #include <os2.h>
  6.  
  7. int main (void)
  8.      {
  9.      HAB  hab ;
  10.      HMQ  hmq ;
  11.  
  12.      hab = WinInitialize (0) ;
  13.      hmq = WinCreateMsgQueue (hab, 0) ;
  14.  
  15.      WinDestroyMsgQueue (hmq) ;
  16.      WinTerminate (hab) ;
  17.      return 0 ;
  18.      }
  19.