UniFreeAttrObject: Difference between revisions
Appearance
No edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
== UniFreeAttrObject == | == UniFreeAttrObject == | ||
; UniFreeAttrObject(attrObj) : Free the character attribute object that was allocated by [[ | ; UniFreeAttrObject(attrObj) : Free the character attribute object that was allocated by [[UniCreateAttrObject]]. | ||
=== Parameters === | === Parameters === | ||
; attrObj - [[ | ; attrObj - [[AttrObject]] - input : The character attribute object that had been created with UniCreateAttrObject. | ||
=== Constants === | === Constants === | ||
Line 12: | Line 12: | ||
* [[OS2 API:Unicode:error#ULS_BADOBJ|ULS_BADOBJ]] | * [[OS2 API:Unicode:error#ULS_BADOBJ|ULS_BADOBJ]] | ||
* [[OS2 API:Unicode:error#ULS_SUCCESS|ULS_SUCCESS]] | * [[OS2 API:Unicode:error#ULS_SUCCESS|ULS_SUCCESS]] | ||
=== Calling conversion === | === Calling conversion === | ||
Line 23: | Line 17: | ||
=== Example Code === | === Example Code === | ||
AttrObject attrObj; | |||
integer rc; | integer rc; | ||
... | ... | ||
Line 30: | Line 24: | ||
=== Related Functions === | === Related Functions === | ||
[[ | *[[UniQueryAttr]] | ||
[[ | *[[UniQueryChar]] | ||
[[ | *[[UniQueryCharAttr]] | ||
[[ | *[[UniQueryCharType]] | ||
=== Notes === | === Notes === | ||
UniFreeAttrObject frees the memory used by the [[AttrObject]]. | |||
=== OS Version Introduced === | === OS Version Introduced === | ||
OS/2 Warp | OS/2 Warp | ||
[[Category:Uni]] | |||
[[Category: |
Revision as of 20:56, 4 December 2016
UniFreeAttrObject
- UniFreeAttrObject(attrObj)
- Free the character attribute object that was allocated by UniCreateAttrObject.
Parameters
- attrObj - AttrObject - input
- The character attribute object that had been created with UniCreateAttrObject.
Constants
None
Returns
An integer with values of:
Calling conversion
Example Code
AttrObject attrObj; integer rc; ... rc = UniFreeAttrObject(attrObj); ...
Related Functions
Notes
UniFreeAttrObject frees the memory used by the AttrObject.
OS Version Introduced
OS/2 Warp