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

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