
MFInitAttributesFromBlob function
Initializes the contents of an attribute store from a byte array.
Syntax
HRESULT MFInitAttributesFromBlob(
_In_ IMFAttributes *pAttributes,
_In_ const UINT8 *pBuf,
_In_ UINT cbBufSize
);
Parameters
- pAttributes [in]
-
Pointer to the IMFAttributes interface of the attribute store.
- pBuf [in]
-
Pointer to the array that contains the initialization data.
- cbBufSize [in]
-
Size of the pBuf array, in bytes.
Return value
The function returns an HRESULT. Possible values include, but are not limited to, those in the following table.
Return code | Description |
---|---|
|
The function succeeded. |
|
The buffer is not valid. |
Remarks
Use this function to deserialize an attribute store that was serialized with the MFGetAttributesAsBlob function.
This function deletes any attributes that were previously stored in pAttributes.
Requirements
Minimum supported client |
Windows Vista [desktop apps | UWP apps] |
---|---|
Minimum supported server |
Windows Server 2008 [desktop apps | UWP apps] |
Minimum supported phone |
Windows Phone 8.1 |
Header |
|
Library |
|
DLL |
|
See also