Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ID3D10Device::SetPrivateData method

Set data to a device and associate that data with a guid.

Syntax


HRESULT SetPrivateData(
  [in]       REFGUID guid,
  [in]       UINT    DataSize,
  [inconst void    *pData
);

Parameters

guid [in]

Type: REFGUID

Guid associated with the data.

DataSize [in]

Type: UINT

Size of the data.

pData [in]

Type: const void*

Pointer to the data to be stored with this device. If pData is NULL, DataSize must also be 0, and any data previously associated with the guid will be destroyed.

Return value

Type: HRESULT

This method returns one of the following Direct3D 10 Return Codes.

Remarks

The data stored in the device with this method can be retrieved with ID3D10DeviceChild::GetPrivateData.

The data and guid set with this method will typically be application-defined.

Requirements

Header

D3D10.h

Library

D3D10.lib

See also

ID3D10Device Interface

 

 

Show:
© 2017 Microsoft