home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Internet Business Development Kit / PRODUCT_CD.iso / sqlsvr / esqlc / esql / samples.c / gcutil.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-21  |  569 b   |  23 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  FILE: gcutil.h
  4. //              
  5. //      Header for generic Embedded SQL for C utilities
  6. //
  7. //  COMMENTS:
  8. //
  9. //      Copyright (C) 1992 - 1994 Microsoft Corporation
  10. //
  11. ///////////////////////////////////////////////////////////////////////////////
  12.  
  13. #define TRUE 1
  14. #define FALSE 0
  15.  
  16. // maximum SQL Server identifier length
  17. #define SQLID_MAX 30
  18.  
  19. // function prototypes
  20. int GetOption (int, char**, char*, char**);
  21. int GetConnectToInfo (int, char**, char*, char*);
  22.  
  23.