home *** CD-ROM | disk | FTP | other *** search
- /*
- * ODBCdbmsSetup.h
- *
- * (c) Apple Computer, Inc 1993
- */
-
- #ifndef SAMPLESETUP_H
- #define SAMPLESETUP_H
-
- #define kMaxKeywordLength (255+1) /* max keyword length */
- #define kMaxValueLength (255+1) /* max value length */
-
- typedef struct
- {
- char name [kMaxValueLength];
- char description [kMaxValueLength];
- char other [kMaxValueLength];
- char translateDLL [kMaxValueLength];
- char translate [kMaxValueLength];
- char translateOption [kMaxValueLength];
- }
- DataSourceInfo;
-
- #endif // SAMPLESETUP_H
-