It specifies the AUID unique identifier used to define types used in AAF persistent objects.
In addition to the specific error results listed for each method, all methods in this interface may also return one of the following values:
AAFRESULT_NOMEMORY
AAFRESULT_NOT_INITIALIZED
Objects that implement IAAFDefObject also implement the following interfaces:
Definition at line 2856 of file AAF.idl.
Public Member Functions | |
| HRESULT | SetName ([in, string] aafCharacter_constptr pName) |
| Sets the Name of this definition. | |
| HRESULT | GetName ([out, string, size_is(bufSize)] aafCharacter *pName,[in] aafUInt32 bufSize) |
| Gets the Name of this definition. | |
| HRESULT | GetNameBufLen ([out] aafUInt32 *pBufSize) |
| Returns size of buffer (in bytes) required for GetName(). | |
| HRESULT | SetDescription ([in, string] aafCharacter_constptr pDescription) |
| Sets the Description of this definition. | |
| HRESULT | GetDescription ([out, string, size_is(bufSize)] aafCharacter *pDescription,[in] aafUInt32 bufSize) |
| Gets the Description of this definition. | |
| HRESULT | GetDescriptionBufLen ([out] aafUInt32 *pBufSize) |
| Returns size of buffer (in bytes) required for GetDescription(). | |
| HRESULT | Initialize ([in, ref] aafUID_constref id,[in, string] aafCharacter_constptr pName) |
| Init all fields of a definition object. | |
| HRESULT | GetAUID ([retval, out] aafUID_t *pAuid) |
| Gets the AUID for this object. | |
|
|
Gets the AUID for this object.
|
|
||||||||||||
|
Gets the Description of this definition. Writes the Description property, with a trailing null character, into the pDescription buffer. The buffer is allocated by the caller. The size of the buffer is given by bufSize. If the Description property has not yet been set, a zero-length string will be written (that is, only the trailing null character). Caller may call GetDescriptionBufLen() to determine the required buffer size. If this method fails nothing will be written to pDescription. Succeeds if:
This method will return the following codes. If more than one of the listed errors is in effect, it will return the first one encountered in the order given below: AAFRESULT_SUCCESS
AAFRESULT_NULL_PARAM
AAFRESULT_SMALL_BUF
|
|
|
Returns size of buffer (in bytes) required for GetDescription(). Succeeds if:
This method will return the following codes. If more than one of the listed errors is in effect, it will return the first one encountered in the order given below: AAFRESULT_SUCCESS
AAFRESULT_NULL_PARAM
|
|
||||||||||||
|
Gets the Name of this definition. Writes the Name property, with a trailing null character, into the pName buffer. The buffer is allocated by the caller. The size of the buffer is given by bufSize. If the Name property has not yet been set, a zero-length string will be written (that is, only the trailing null character). Caller may call GetNameBufLen() to determine the required buffer size. If this method fails nothing will be written to pName. Succeeds if:
This method will return the following codes. If more than one of the listed errors is in effect, it will return the first one encountered in the order given below: AAFRESULT_SUCCESS
AAFRESULT_NULL_PARAM
AAFRESULT_SMALL_BUF
|
|
|
Returns size of buffer (in bytes) required for GetName(). Succeeds if:
This method will return the following codes. If more than one of the listed errors is in effect, it will return the first one encountered in the order given below: AAFRESULT_SUCCESS
AAFRESULT_NULL_PARAM
|
|
||||||||||||
|
Init all fields of a definition object.
|
|
|
Sets the Description of this definition. Set the Description property to the value specified in pDescription. A copy is made of the data so the caller retains ownership of the *pDescription buffer and is responsible for de-allocating it. There is no pre-set limit to the length of the name, other than available system memory or disk space. Succeeds if all of the following are true:
If this method fails the Description property will not be changed. This method will return the following codes. If more than one of the listed errors is in effect, it will return the first one encountered in the order given below: AAFRESULT_SUCCESS
AAFRESULT_NULL_PARAM
|
|
|
Sets the Name of this definition. Set the Name property to the value specified in pName. A copy is made of the data so the caller retains ownership of the *pName buffer and is responsible for de-allocating it. There is no pre-set limit to the length of the name, other than available system memory or disk space. Succeeds if all of the following are true:
If this method fails the Name property will not be changed. This method will return the following codes. If more than one of the listed errors is in effect, it will return the first one encountered in the order given below: AAFRESULT_SUCCESS
AAFRESULT_NULL_PARAM
|
1.4.1