home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / adsi / sampprov / guid.h < prev    next >
C/C++ Source or Header  |  1997-07-29  |  767b  |  49 lines

  1. /*++
  2.  
  3. Copyright (c) 1996 Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     Guid.h
  8.  
  9. Abstract:
  10.  
  11.     Extern references for Sample Guids
  12.     
  13. Author:
  14.  
  15. Environment:
  16.  
  17.     User mode
  18.  
  19. Revision History :
  20.  
  21. --*/
  22. #ifndef _GUID_H_
  23. #define _GUID_H_
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29. //-------------------------------------------
  30. //
  31. // SampleDSOle CLSIDs
  32. //
  33. //-------------------------------------------
  34. extern const CLSID LIBID_SampleDSOle;
  35. extern const CLSID CLSID_SampleDSNamespace;
  36. extern const CLSID CLSID_SampleDSProvider;
  37. extern const CLSID CLSID_SampleDSGenObject;
  38. extern const CLSID CLSID_SampleDSSchema;
  39. extern const CLSID CLSID_SampleDSClass;
  40. extern const CLSID CLSID_SampleDSProperty;
  41.  
  42. #ifdef __cplusplus
  43. }
  44. #endif
  45.  
  46.  
  47. #endif
  48.  
  49.