IVsObjectManager2.RegisterLibrary Method

Registers a symbol library with the Visual Studio object manager.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

Syntax

'Declaration
Function RegisterLibrary ( _
    pLib As IVsLibrary2, _
    <OutAttribute> ByRef pdwCookie As UInteger _
) As Integer
int RegisterLibrary(
    IVsLibrary2 pLib,
    out uint pdwCookie
)
int RegisterLibrary(
    [InAttribute] IVsLibrary2^ pLib, 
    [OutAttribute] unsigned int% pdwCookie
)
abstract RegisterLibrary : 
        pLib:IVsLibrary2 * 
        pdwCookie:uint32 byref -> int 
function RegisterLibrary(
    pLib : IVsLibrary2, 
    pdwCookie : uint
) : int

Parameters

  • pdwCookie
    Type: System.UInt32%
    [out] The Cookie that identifies the registered library.

Return Value

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

Remarks

CCOM Signature

From vsshell80.idl:

HRESULT IVsObjectManager2::RegisterLibrary(

[in] IVsLibrary2 * pLib,

[out] VSCOOKIE* pdwCookie

);

.NET Framework Security

See Also

Reference

IVsObjectManager2 Interface

Microsoft.VisualStudio.Shell.Interop Namespace