IUIHostLocale2::GetUILibraryFileName Method (String^, String^, String^)
Visual Studio 2015
Returns a UI library (DLL) file.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
int GetUILibraryFileName(
String^ lpstrPath,
String^ lpstrDllName,
[OutAttribute] String^% pbstrOut
)
Parameters
- lpstrPath
-
Type:
System::String^
[in] Specifies the path to the DLL.
- lpstrDllName
-
Type:
System::String^
[in] Specifies DLL name.
- pbstrOut
-
Type:
System::String^
[out] Pointer to a string containing the out.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From uilocale.idl:
HRESULT IUIHostLocale2::GetUILibraryFileName( [in] LPCOLESTR lpstrPath, [in] LPCOLESTR lpstrDllName, [out, retval] BSTR *pbstrOut );
Show: