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

  1. /*-------------------------------------------------------
  2.    WE.C -- A Program that Obtains an Anchor Block Handle
  3.   -------------------------------------------------------*/
  4.  
  5. #include <os2.h>
  6.  
  7. int main (void)
  8.      {
  9.      HAB  hab ;
  10.  
  11.      hab = WinInitialize (0) ;
  12.  
  13.      WinTerminate (hab) ;
  14.      return 0 ;
  15.      }
  16.