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

  1. #include <stdio.h>
  2. #include "pxengine.h"
  3.  
  4. #define SOURCETABLE    "table1"
  5. #define DESTTABLE      "table2"
  6.  
  7. int main(void)
  8. {
  9.     int pxErr;
  10.  
  11.     PXInit();
  12.  
  13.     /* Copy one table to another */
  14.     if ((pxErr = PXTblCopy(SOURCETABLE, DESTTABLE)) != PXSUCCESS)
  15.         printf("%s\n", PXErrMsg(pxErr));
  16.  
  17.     PXExit();
  18.     return(pxErr);
  19. }
  20.