home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a025 / 6.ddi / SRVDBTYP.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-15  |  1.8 KB  |  69 lines

  1.  
  2.  
  3. #if !defined( DBTYPEDEFS )  // So we don't conflict with DBLIB definitions
  4. //
  5. // define data types
  6. //
  7. typedef unsigned char DBBOOL;
  8. typedef unsigned char DBBYTE;
  9. typedef unsigned char DBTINYINT;
  10. typedef short DBSMALLINT;
  11. typedef unsigned short DBUSMALLINT;
  12. typedef long DBINT;
  13. typedef char DBCHAR;
  14. typedef unsigned char DBBINARY;
  15. typedef unsigned char DBBIT;
  16. typedef double DBFLT8;
  17.  
  18. typedef int RETCODE;        // SUCCEED or FAIL
  19.  
  20. typedef struct srv_datetime { // DataServer datetime type 
  21.     long dtdays;            // number of days since 1/1/1900
  22.     unsigned long dttime;   // number 300th second since mid
  23.  
  24. } DBDATETIME;
  25.  
  26. typedef struct srv_money {   // DataServer money type 
  27.     long mnyhigh;
  28.     unsigned long mnylow;
  29.  
  30. } DBMONEY;
  31.  
  32. typedef unsigned short BOOL;
  33. typedef unsigned char BYTE;
  34.  
  35. // These are version 4.2 additions                                      
  36. //
  37. typedef float DBFLT4;
  38. typedef long DBMONEY4;
  39.  
  40. #define DBREAL  DBFLT4
  41. typedef struct dbdatetime4 {
  42.     unsigned short numdays; // No of days since Jan-1-1900             
  43.     unsigned short nummins; // No. of minutes since midnight           
  44. } DBDATETIM4;
  45.  
  46. /* DBDATEREC structure used by dbdatecrack. This is a version 4.2 addition */
  47. typedef struct dbdaterec
  48. {
  49.     int     year;        /* 1753 - 9999 */
  50.     int     quarter;        /* 1 - 4 */
  51.     int     month;        /* 1 - 12 */
  52.     int     dayofyear;        /* 1 - 366 */
  53.     int     day;        /* 1 - 31 */
  54.     int     week;        /* 1 - 54 (for leap years) */
  55.     int     weekday;        /* 1 - 7  (Mon - Sun) */
  56.     int     hour;        /* 0 - 23 */
  57.     int     minute;        /* 0 - 59 */
  58.     int     second;        /* 0 - 59 */
  59.     int     millisecond;    /* 0 - 999 */
  60. } DBDATEREC;
  61.  
  62. #endif  // #if !defined( DBTYPEDEFS )
  63.  
  64. #if !defined( DBPROGNLEN )
  65.  
  66. #define DBPROGNLEN  10
  67.  
  68. #endif
  69.