Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
871 B

  1. //---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1996
  5. //
  6. // File: cdsocf.hxx
  7. //
  8. // Contents: ADSI Data Source Object Class Factory Code
  9. //
  10. // CDSOCF::CreateInstance
  11. //
  12. // History: 08-01-96 shanksh Created.
  13. //
  14. //----------------------------------------------------------------------------
  15. //+------------------------------------------------------------------------
  16. //
  17. // Class: CDSOCF (tag)
  18. //
  19. // Purpose: Class factory for standard data source object
  20. //
  21. // Interface: IClassFactory
  22. //
  23. //-------------------------------------------------------------------------
  24. class CDSOCF : public StdClassFactory
  25. {
  26. public:
  27. STDMETHOD(CreateInstance)(IUnknown * pUnkOuter, REFIID iid, LPVOID * ppv);
  28. };