home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2000 September / VPR0009A.BIN / VS60SP4JPN / support / msdshape.h < prev    next >
C/C++ Source or Header  |  1999-03-15  |  1KB  |  39 lines

  1. //--------------------------------------------------------------------
  2. // Microsoft Data Shape Provider
  3. //
  4. // (c) 1998 Microsoft Corporation.    All Rights Reserved.
  5. //
  6. // DataShape provider external constants GUIDS and other things users need
  7.  
  8. #ifndef DS_INCLUDED
  9. #define DS_INCLUDED
  10.  
  11. #ifdef DSINITCONSTANTS
  12. extern const CLSID CLSID_DataShapeProvider =
  13.                 { 0x3449a1c8, 0xc56c, 0x11d0, { 0xad, 0x72, 0, 0xc0, 0x4f, 0xc2, 0x98, 0x63}};
  14. extern const CLSID DBPROPSET_MSDSDBINIT =
  15.                 { 0x55cb91a8, 0x5c7a, 0x11d1, { 0xad, 0xad, 0, 0xc0, 0x4f, 0xc2, 0x98, 0x63}};
  16. extern const CLSID DBPROPSET_MSDSSESSION =
  17.                 { 0xedf17536, 0xafbf, 0x11d1, { 0x88, 0x47, 0, 0,    0xf8, 0x79, 0xf9, 0x8c}};
  18. extern const char *PROGID_DataShapeProvider = "MSDataShape";
  19. extern const char *PROGID_DataShapeProvider_Version = "MSDataShape.1";
  20. #else
  21. extern const CLSID CLSID_DataShapeProvider;
  22. extern const CLSID DBPROPSET_MSDSDBINIT;
  23. extern const CLSID DBPROPSET_MSDSSESSION;
  24. extern const char *PROGID_DataShapeProvider;
  25. extern const char *PROGID_DataShapeProvider_Version;
  26. #endif // DSINITCONSTANTS
  27.  
  28.  
  29. enum MSDSDBINITPROPENUM
  30.     { DBPROP_MSDS_DBINIT_DATAPROVIDER = 2,
  31.     };
  32.  
  33. enum MSDSSESSIONPROPENUM
  34.     { DBPROP_MSDS_SESS_UNIQUENAMES = 2,
  35.     };
  36.  
  37. #endif // DS_INCLUDED
  38.  
  39.