home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / clipper / 52capi.zip / DBEDIT.CH < prev    next >
Text File  |  1993-02-15  |  748b  |  30 lines

  1. /***
  2. *
  3. *  Dbedit.ch
  4. *
  5. *  Standard definitions for DBEDIT() user function
  6. *
  7. *  Copyright (c) 1990-1993, Computer Associates International, Inc.
  8. *  All rights reserved.
  9. *
  10. */
  11.  
  12.  
  13. // User function entry modes
  14.  
  15. #define DE_IDLE         0      // Idle
  16. #define DE_HITTOP       1      // Attempt to cursor past top of file
  17. #define DE_HITBOTTOM    2      // Attempt to cursor past bottom of file
  18. #define DE_EMPTY        3      // No records in work area
  19. #define DE_EXCEPT       4      // Key exception
  20.  
  21.  
  22. // User function return codes
  23.  
  24. #define DE_ABORT        0      // Abort DBEDIT()
  25. #define DE_CONT         1      // Continue DBEDIT()
  26. #define DE_REFRESH      2      // Force reread/redisplay of all data rows
  27.  
  28. #define _DBEDIT_CH
  29.  
  30.