IVsInstalledProduct.IdBmpSplash(UInt32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.