IVsResourceManager.LoadResourceBlob Method

Definition

Loads the resource blob into the specified package.

public:
 int LoadResourceBlob(Guid % guidPackage, int culture, System::String ^ pszResourceName, [Runtime::InteropServices::Out] IntPtr % pBytes, [Runtime::InteropServices::Out] int % lAllocated);
public int LoadResourceBlob (ref Guid guidPackage, int culture, string pszResourceName, out IntPtr pBytes, out int lAllocated);
abstract member LoadResourceBlob : Guid * int * string * nativeint * int -> int
Public Function LoadResourceBlob (ByRef guidPackage As Guid, culture As Integer, pszResourceName As String, ByRef pBytes As IntPtr, ByRef lAllocated As Integer) As Integer

Parameters

guidPackage
Guid

[in] Guid of the package into which the resource will be loaded.

culture
Int32

[in] A LCID value specifying the culture for which the resource is valid. Supplying a value of 0 will select the LCID that the user selected when the application was started.

pszResourceName
String

[in] The name of the resource.

pBytes
IntPtr

nativeint

[out] Size in bytes of the blob.

lAllocated
Int32

[out] Bytes allocated for the blob.

Returns

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

Remarks

The buffer returned by LoadResourceBlob is allocated by the Win32 system call CoTaskMemAlloc and must be freed by the caller with CoTaskMemFree.

COM Signature

From vsshell80.idl:

HRESULT LoadResourceBlob(  
   [in] REFGUID guidPackage,  
   [in] int culture,  
   [in, string] LPCOLESTR pszResourceName,  
   [out] BYTE **pBytes,  
   [out] long *lAllocated)  
;)  

Applies to