home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Database / CLIPR503.W96 / SET.C_ / SET.C
C/C++ Source or Header  |  1995-06-26  |  2KB  |  78 lines

  1. /***
  2. *
  3. *  Set.ch
  4. *
  5. *  Clipper SET() definitions
  6. *
  7. *  Copyright (c) 1990-1995, 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_EVENTMASK    39
  61. #define _SET_VIDEOMODE    40
  62.  
  63. #define _SET_MBLOCKSIZE   41
  64. #define _SET_MFILEEXT     42
  65.  
  66. #define _SET_STRICTREAD   43
  67. #define _SET_OPTIMIZE     44
  68. #define _SET_AUTOPEN      45
  69. #define _SET_AUTORDER     46
  70. #define _SET_AUTOSHARE    47
  71.  
  72. #define _SET_COUNT        47
  73.  
  74. #define _SET_CH
  75.  
  76. #endif
  77.  
  78.