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.

63 lines
1.3 KiB

  1. //---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1995
  5. //
  6. // File: cnamcf.cxx
  7. //
  8. // Contents: Windows NT 3.5 Namespace Object Class Factory Code
  9. //
  10. // CWinNTNamespaceCF::CreateInstance
  11. //
  12. // History: 01-30-95 krishnag Created.
  13. //
  14. //----------------------------------------------------------------------------
  15. #include "winnt.hxx"
  16. #pragma hdrstop
  17. //+---------------------------------------------------------------------------
  18. //
  19. // Function: CWinNTNamespaceCF::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. CWinNTNamespaceCF::CreateInstance(
  35. IUnknown * pUnkOuter,
  36. REFIID iid,
  37. LPVOID * ppv
  38. )
  39. {
  40. HRESULT hr = S_OK;
  41. CWinNTCredentials Credentials; // default creds
  42. if (pUnkOuter)
  43. RRETURN(E_FAIL);
  44. hr = CWinNTNamespace::CreateNamespace(
  45. L"ADs:",
  46. L"WinNT:",
  47. ADS_OBJECT_BOUND,
  48. iid,
  49. Credentials,
  50. ppv
  51. );
  52. RRETURN(hr);
  53. }