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.
|
|
//----------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 2000.
//
// File: umi.hxx
//
// Contents: Header for miscellaneous UMI routines.
//
// History: 02-28-00 SivaramR Created.
//
//----------------------------------------------------------------------------
#ifndef __UMI_H__
#define __UMI_H__
BOOL IsPreDefinedErrorCode(HRESULT hr); HRESULT MapHrToUmiError(HRESULT hr);
HRESULT UmiToWinNTPath( IUmiURL *pURL, WCHAR **ppszWinNTPath, DWORD *pdwNumComps, LPWSTR **pppszClasses );
HRESULT ADsToUmiPath( BSTR bstrADsPath, OBJECTINFO *pObjectInfo, LPWSTR CompClasses[], DWORD dwNumComponents, DWORD dwUmiPathType, LPWSTR *ppszUmiPath );
#endif // __UMI_H__
|