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 / cprovcf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-07-29  |  415 b   |  33 lines

  1. /*++
  2.  
  3. Copyright (c) 1996 Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     CProvCf.h
  8.  
  9. Abstract:
  10.  
  11.     Class Factory for Provider Object
  12. Author:
  13.  
  14. Environment:
  15.  
  16.     User mode
  17.  
  18. Revision History :
  19.  
  20. --*/
  21. #ifndef _CPROVCF_H_
  22. #define _CPROVCF_H_
  23.  
  24. class CSampleDSProviderCF : public StdClassFactory
  25. {
  26. public:
  27.     STDMETHOD(CreateInstance)(IUnknown * pUnkOuter, REFIID iid, LPVOID * ppv);
  28. };
  29.  
  30.  
  31. #endif
  32.  
  33.