home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a006 / 2.ddi / CEXAM.ZIP / INIT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-11  |  265 b   |  16 lines

  1. #include <stdio.h>
  2. #include "pxengine.h"
  3.  
  4. int main(void)
  5. {
  6.     int pxErr;
  7.  
  8.     /* Attempt to initialize the Engine */
  9.     if ((pxErr = PXInit()) != PXSUCCESS)
  10.         printf("%s\n", PXErrMsg(pxErr));
  11.     else
  12.         PXExit();
  13.  
  14.     return(pxErr);
  15. }
  16.