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

  1. #include <stdio.h>
  2. #include "pxengine.h"
  3.  
  4. int main(void)
  5. {
  6.     int pxErr;
  7.     TABLEHANDLE tblHandle;
  8.  
  9.     PXInit();
  10.  
  11.     /* Open a non-existing table */
  12.     pxErr = PXTblOpen("ZZ:\BAD",&tblHandle,0,0);
  13.  
  14.     /* Print associated error message */
  15.     printf("%s\n", PXErrMsg(pxErr));
  16.  
  17.     PXExit();
  18.     return(pxErr);
  19. }
  20.