IVsInstalledProduct.IdBmpSplash(UInt32) Method

Definition

Visual Studio 2005 no longer calls this method.

public:
 int IdBmpSplash([Runtime::InteropServices::Out] System::UInt32 % pIdBmp);
int IdBmpSplash([Runtime::InteropServices::Out] unsigned int & pIdBmp);
public int IdBmpSplash (out uint pIdBmp);
abstract member IdBmpSplash : uint32 -> int
Public Function IdBmpSplash (ByRef pIdBmp As UInteger) As Integer

Parameters

pIdBmp
UInt32

[out] Pointer to the ID of the bitmap to be displayed.

Returns

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell.idl:

HRESULT IVsInstalledProduct::IdBmpSplash(  
   [out, retval] UINT *pIdBmp  
);  

Visual Studio 2005 no longer calls this method. In your implementation, just return E_NOTIMPL. Implement IdIcoLogoForAboutbox instead.

Applies to