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

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