home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a009 / 5.ddi / INCLUDE.LIF / DBEDIT.CH < prev    next >
Encoding:
Text File  |  1991-04-14  |  607 b   |  23 lines

  1. /***
  2. *    dbedit.ch
  3. *    Standard definitions for DBEDIT() user function.
  4. *    Copyright (c) 1990 Nantucket Corp.  All Rights Reserved.
  5. */
  6.  
  7.  
  8. // User function entry modes
  9.  
  10. #define DE_IDLE            0        // Idle
  11. #define DE_HITTOP        1        // Attempt to cursor past top of file
  12. #define DE_HITBOTTOM    2        // Attempt to cursor past bottom of file
  13. #define DE_EMPTY        3        // No records in work area
  14. #define DE_EXCEPT        4        // Key exception
  15.  
  16.  
  17. // User function return codes
  18.  
  19. #define DE_ABORT        0        // Abort DBEDIT()
  20. #define DE_CONT            1        // Continue DBEDIT()
  21. #define DE_REFRESH        2        // Force reread/redisplay of all data rows
  22.  
  23.