home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 January: Mac OS SDK / Dev.CD Jan 96 SDK / Dev.CD Jan 96 SDK1.toast / Development Kits (Disc 1) / MacODBC / ODBC Tools / SampleSetup / Sources / SampleSetup.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-17  |  510 b   |  25 lines  |  [TEXT/MPS ]

  1. /*
  2.  *    ODBCdbmsSetup.h
  3.  *
  4.  *    (c) Apple Computer, Inc 1993
  5.  */
  6.  
  7. #ifndef SAMPLESETUP_H
  8. #define SAMPLESETUP_H
  9.  
  10. #define kMaxKeywordLength        (255+1)                /* max keyword length    */
  11. #define kMaxValueLength            (255+1)                /* max value length        */
  12.  
  13. typedef struct
  14. {
  15.     char    name            [kMaxValueLength];
  16.     char    description        [kMaxValueLength];
  17.     char    other            [kMaxValueLength];
  18.     char    translateDLL    [kMaxValueLength];
  19.     char    translate        [kMaxValueLength];
  20.     char    translateOption    [kMaxValueLength];
  21. }
  22. DataSourceInfo;
  23.  
  24. #endif // SAMPLESETUP_H
  25.