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

  1. /***
  2. *
  3. *  Set.ch
  4. *
  5. *  Clipper SET() definitions
  6. *
  7. *  Copyright (c) 1990-1993, Computer Associates International, Inc.
  8. *  All rights reserved.
  9. *
  10. *  xOldSetting := Set( nSpecifier [, xNewSetting] )
  11. *
  12. */
  13.  
  14. #ifndef _SET_CH
  15.  
  16. #define _SET_EXACT         1
  17. #define _SET_FIXED         2
  18. #define _SET_DECIMALS      3
  19. #define _SET_DATEFORMAT    4
  20. #define _SET_EPOCH         5
  21. #define _SET_PATH          6
  22. #define _SET_DEFAULT       7
  23.  
  24. #define _SET_EXCLUSIVE     8
  25. #define _SET_SOFTSEEK      9
  26. #define _SET_UNIQUE       10
  27. #define _SET_DELETED      11
  28.  
  29. #define _SET_CANCEL       12
  30. #define _SET_DEBUG        13
  31. #define _SET_TYPEAHEAD    14
  32.  
  33. #define _SET_COLOR        15
  34. #define _SET_CURSOR       16
  35. #define _SET_CONSOLE      17
  36. #define _SET_ALTERNATE    18
  37. #define _SET_ALTFILE      19
  38. #define _SET_DEVICE       20
  39. #define _SET_EXTRA        21
  40. #define _SET_EXTRAFILE    22
  41. #define _SET_PRINTER      23
  42. #define _SET_PRINTFILE    24
  43. #define _SET_MARGIN       25
  44.  
  45. #define _SET_BELL         26
  46. #define _SET_CONFIRM      27
  47. #define _SET_ESCAPE       28
  48. #define _SET_INSERT       29
  49. #define _SET_EXIT         30
  50. #define _SET_INTENSITY    31
  51. #define _SET_SCOREBOARD   32
  52. #define _SET_DELIMITERS   33
  53. #define _SET_DELIMCHARS   34
  54.  
  55. #define _SET_WRAP         35
  56. #define _SET_MESSAGE      36
  57. #define _SET_MCENTER      37
  58. #define _SET_SCROLLBREAK  38
  59.  
  60. #define _SET_COUNT        38
  61.  
  62. #define _SET_CH
  63.  
  64. #endif
  65.  
  66.