This topic has not yet been rated - Rate this topic

IVsShell.LoadUILibrary Method

Triggers the satellite DLL to load if it has not already done so.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
int LoadUILibrary(
	ref Guid guidPackage,
	uint dwExFlags,
	out uint phinstOut
)

Parameters

guidPackage
Type: System.Guid%

[in] Unique identifier of the satellite DLL to be loaded.

dwExFlags
Type: System.UInt32

[in] Flags that are directly passed to the Microsoft Win32 LoadLibrary API.

phinstOut
Type: System.UInt32%

[out, retval] Pointer to the HINSTANCE of the loaded library.

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

COM Signature

From vsshell.idl:

HRESULT IVsShell::LoadUILibrary(
   [in] REFGUID guidPackage,
   [in] DWORD dwExFlags,
   [out, retval] DWORD_PTR *phinstOut
);

The environment knows which language locale you are running under and loads the appropriate DLL. Your VSPackage calls this method in your SetSite to get access to your own resources.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.