home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / harbb30g.zip / INCLUDE / set.ch < prev    next >
Text File  |  1999-09-15  |  3KB  |  102 lines

  1. /*
  2.  * $Id: set.ch,v 1.9 1999/09/15 14:03:38 vszel Exp $
  3.  */
  4.  
  5. /*
  6.  * Harbour Project source code:
  7.  * Header file for SET() function
  8.  *
  9.  * Copyright 1999 David G. Holm <dholm@jsd-llc.com>
  10.  * www - http://www.harbour-project.org
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version, with one exception:
  16.  *
  17.  * The exception is that if you link the Harbour Runtime Library (HRL)
  18.  * and/or the Harbour Virtual Machine (HVM) with other files to produce
  19.  * an executable, this does not by itself cause the resulting executable
  20.  * to be covered by the GNU General Public License. Your use of that
  21.  * executable is in no way restricted on account of linking the HRL
  22.  * and/or HVM code into it.
  23.  *
  24.  * This program is distributed in the hope that it will be useful,
  25.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  26.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27.  * GNU General Public License for more details.
  28.  *
  29.  * You should have received a copy of the GNU General Public License
  30.  * along with this program; if not, write to the Free Software
  31.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
  32.  * their web site at http://www.gnu.org/).
  33.  *
  34.  */
  35.  
  36. /*
  37.  * ChangeLog:
  38.  *
  39.  * V 1.4    David G. Holm               Added my email address.
  40.  * V 1.3    David G. Holm               Added copyright and license header,
  41.  *                                      along with a complete version history.
  42.  * V 1.2    Victor Szel                 Change not documented.
  43.  * V 1.1    Manuel Ruiz                 Committed to CVS.
  44.  * V 1.0    David G. Holm               Initial version.
  45.  *
  46.  */
  47.  
  48. /* NOTE: This file is also used by C code. */
  49.  
  50. #ifndef _SET_CH
  51. #define _SET_CH
  52.  
  53. #define _SET_EXACT        1
  54. #define _SET_FIXED        2
  55. #define _SET_DECIMALS     3
  56. #define _SET_DATEFORMAT   4
  57. #define _SET_EPOCH        5
  58. #define _SET_PATH         6
  59. #define _SET_DEFAULT      7
  60.  
  61. #define _SET_EXCLUSIVE    8
  62. #define _SET_SOFTSEEK     9
  63. #define _SET_UNIQUE       10
  64. #define _SET_DELETED      11
  65.  
  66. #define _SET_CANCEL       12
  67. #define _SET_DEBUG        13
  68. #define _SET_TYPEAHEAD    14
  69.  
  70. #define _SET_COLOR        15
  71. #define _SET_CURSOR       16
  72. #define _SET_CONSOLE      17
  73. #define _SET_ALTERNATE    18
  74. #define _SET_ALTFILE      19
  75. #define _SET_DEVICE       20
  76. #define _SET_EXTRA        21
  77. #define _SET_EXTRAFILE    22
  78. #define _SET_PRINTER      23
  79. #define _SET_PRINTFILE    24
  80. #define _SET_MARGIN       25
  81.  
  82. #define _SET_BELL         26
  83. #define _SET_CONFIRM      27
  84. #define _SET_ESCAPE       28
  85. #define _SET_INSERT       29
  86. #define _SET_EXIT         30
  87. #define _SET_INTENSITY    31
  88. #define _SET_SCOREBOARD   32
  89. #define _SET_DELIMITERS   33
  90. #define _SET_DELIMCHARS   34
  91.  
  92. #define _SET_WRAP         35
  93. #define _SET_MESSAGE      36
  94. #define _SET_MCENTER      37
  95. #define _SET_SCROLLBREAK  38
  96.  
  97. #define _SET_EVENTMASK    39
  98.  
  99. #define _SET_COUNT        39
  100.  
  101. #endif /* _SET_CH */
  102.