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.

37 lines
762 B

  1. //+------------------------------------------------------------------------
  2. //
  3. // Class: Common
  4. //
  5. // Purpose: Contains Winnt routines and properties that are common to
  6. // all Winnt objects. Winnt objects get the routines and
  7. // properties through C++ inheritance.
  8. //
  9. //-------------------------------------------------------------------------
  10. HRESULT
  11. LoadTypeInfoEntry(
  12. CDispatchMgr * pDispMgr,
  13. REFIID libid,
  14. REFIID iid,
  15. void * pIntf,
  16. DISPID SpecialId
  17. );
  18. HRESULT
  19. BuildADsPath(
  20. BSTR Parent,
  21. BSTR Name,
  22. BSTR *pADsPath
  23. );
  24. HRESULT
  25. BuildADsGuid(
  26. REFCLSID clsid,
  27. BSTR *pADsClass
  28. );
  29. HRESULT
  30. ValidateOutParameter(
  31. BSTR * retval
  32. );