home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / zfamily.zip / zfamily / ZISFUNCS / SAMPLE / TSTDEFS.H < prev    next >
Text File  |  1993-09-01  |  3KB  |  84 lines

  1. /*
  2. ** /----------------------------------------------------------------------\
  3. ** |             IBM Z Family Reusable Libraries/2 (5641-504)             |
  4. ** |----------------------------------------------------------------------|
  5. ** | (C) Copyright International Business Machines Corporation 1993, 1994 |
  6. ** |----------------------------------------------------------------------|
  7. ** |                       DISCLAIMER OF WARRANTIES                       |
  8. ** |                       ------------------------                       |
  9. ** | The following code is sample code created by IBM Corporation.        |
  10. ** | Such a code is provided to you solely for the purpose of assisting   |
  11. ** | you in the development of your applications. The code is provided    |
  12. ** | "AS IS", without warranty of any kind.  IBM shall not be liable for  |
  13. ** | any damages arising out of your use of the following code, even if   |
  14. ** | they have been advised of the possibility of such damages.           |                                                                         *
  15. ** \----------------------------------------------------------------------/
  16. **
  17. **  Header  : TSTDEFS.H
  18. **  Authors : Alessandro Cavallini (CAVALLI at ROMEPPC)
  19. **            Pino Venturella (VENTUREL at ROMEPPC)
  20. **  Reviewer: Dario de Judicibus (DEJUDICI at ROMEPPC)
  21. **  Created : 06 Jul 1992
  22. **  Updated : 31 Aug 1993
  23. **  Version : 3.12
  24. **  Content : ID definitions
  25. **
  26. */
  27.  #ifndef TSTDEFS
  28.  #define TSTDEFS 0
  29.  
  30. /*
  31. ** Max string lenght
  32. */
  33.  #define tstMAX_STR_LEN   40
  34.  
  35. /*
  36. ** ID for tables
  37. */
  38.  #define TST_TYPE               0x0000
  39.  #define TST_NOTATION           0x0001
  40.  
  41. /*
  42. ** Type ID
  43. */
  44.  #define TST_ID_TYPE_NAT        0xA000
  45.  #define TST_ID_TYPE_INT        0xA001
  46.  #define TST_ID_TYPE_REAL       0xA002
  47.  
  48. /*
  49. ** Notation ID
  50. */
  51.  #define TST_ID_NTN_FLAT        0xA100
  52.  #define TST_ID_NTN_THS         0xA101
  53.  #define TST_ID_NTN_ANY         0xA102
  54.  #define TST_ID_NTN_EXP         0xA103
  55.  #define TST_ID_NTN_SCI         0xA104
  56.  
  57. /*
  58. ** Function ID
  59. */
  60.  #define TST_FLAT_NAT           0x0200
  61.  #define TST_THS_NAT            0x0201
  62.  #define TST_ANY_NAT            0x0202
  63.  #define TST_FLAT_INT           0x0203
  64.  #define TST_THS_INT            0x0204
  65.  #define TST_ANY_INT            0x0205
  66.  #define TST_FLAT_REAL          0x0206
  67.  #define TST_THS_REAL           0x0207
  68.  #define TST_SCI_REAL           0x0208
  69.  #define TST_EXP_REAL           0x0209
  70.  #define TST_ANY_REAL           0x020A
  71.  
  72. /*
  73. ** About id
  74. */
  75.  #define  tstSTR_DLLAUTHOR       0xA200
  76.  
  77. /*
  78. ** Exit id
  79. */
  80.  #define  tstSTR_EXITREQUEST     0xA209
  81.  #define  tstWRN_AREYOUSURE      0xA20A
  82.  
  83. #endif
  84.