home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 13 / 13.iso / s / s001 / 1.ddi / PFC / SRC / DBCKPT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-05  |  320 b   |  23 lines

  1. /* (c) 1985, Phoenix Computer Products Corp. and Novum Organum, Inc. */
  2. #include "cptpdf.h"
  3.  
  4. dbckpt (h_db)
  5.     HDL h_db;
  6. {
  7.     dbactv (h_db);
  8.     _dbckpt();
  9. }
  10.  
  11. _dbckpt()
  12. {
  13.     HDL    _dbfhdl();
  14.  
  15.     bffilflush (_dbfhdl());
  16.  
  17.     if    (_dbhasnewpgs())
  18.         {
  19.     flckpt(_dbfhdl());
  20.         _dbsetnewpgs(NO);
  21.         }
  22. }
  23.