ID3DXFileData::GetName method
Retrieves the name of this file data object.
Syntax
HRESULT GetName(
[in] LPSTR szName,
[in, out] SIZE_T *puiSize
);
Parameters
-
szName [in]
-
Type: LPSTR
Address of a pointer to receive the name of this file data object. If this parameter is NULL, then puiSize will return the size of the string. If szName points to valid memory, the name of this file data object will be copied into szName up to the number of characters given by puiSize.
-
puiSize [in, out]
-
Type: SIZE_T*
Pointer to the size of the string that represents the name of this file data object. This parameter can be NULL if szName provides a reference to the name. This parameter will return the size of the string if szName is NULL.
Return value
Type: HRESULT
If the method succeeds, the return value is S_OK. If the method fails, the following value will be returned: D3DXFERR_BADVALUE.
Remarks
For this method to succeed, either szName or puiSize must be non-NULL.
Requirements
Requirement | Value |
---|---|
Header |
|
Library |
|
See also