Source code of Windows XP (NT5)
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.

58 lines
1.3 KiB

  1. //---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1996
  5. //
  6. // File: cnamcf.cxx
  7. //
  8. // Contents: LDAP Domain Object Class Factory Code
  9. //
  10. // CLDAPDomainCF::CreateInstance
  11. //
  12. // History: 06-15-96 yihsins Created.
  13. //
  14. //----------------------------------------------------------------------------
  15. #include "ldap.hxx"
  16. #pragma hdrstop
  17. //+---------------------------------------------------------------------------
  18. //
  19. // Function: CLDAPDomainCF::CreateInstance
  20. //
  21. // Synopsis:
  22. //
  23. // Arguments: [pUnkOuter]
  24. // [iid]
  25. // [ppv]
  26. //
  27. // Returns: HRESULT
  28. //
  29. // Modifies:
  30. //
  31. // History: 01-30-95 krishnag Created.
  32. //----------------------------------------------------------------------------
  33. STDMETHODIMP
  34. CLDAPDomainCF::CreateInstance(IUnknown * pUnkOuter, REFIID iid, LPVOID * ppv)
  35. {
  36. HRESULT hr = S_OK;
  37. CCredentials Credentials;
  38. if (pUnkOuter)
  39. RRETURN(E_FAIL);
  40. hr = CLDAPDomain::CreateDomain(
  41. TEXT("ADs:"),
  42. TEXT("LDAP:"),
  43. Credentials,
  44. ADS_OBJECT_BOUND,
  45. iid,
  46. ppv
  47. );
  48. RRETURN(hr);
  49. }