UniSetUconvObject: Difference between revisions
Appearance
No edit summary |
mNo edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 14: | Line 14: | ||
* [[UCONV#UCONV_OPTION_SUBSTITUTION_TO_UNICODE|UCONV_OPTION_SUBSTITUTION_TO_UNICODE]] | * [[UCONV#UCONV_OPTION_SUBSTITUTION_TO_UNICODE|UCONV_OPTION_SUBSTITUTION_TO_UNICODE]] | ||
; endian : Source and target endian. Source applies to [[UniUconvFromUcs]]; target applies to [[ | ; endian : Source and target endian. Source applies to [[UniUconvFromUcs]]; target applies to [[UniUconvToUcs]]. | ||
* 0x000 Use system endian. | * 0x000 Use system endian. | ||
* 0xfeff Use big endian. | * 0xfeff Use big endian. | ||
Line 20: | Line 20: | ||
; displaymask : 32 bit display and data mask. Each bit represents a control character below space (1<<char). The bit being a zero the character represents a glyph. The bit being one the character represents a control. | ; displaymask : 32 bit display and data mask. Each bit represents a control character below space (1<<char). The bit being a zero the character represents a glyph. The bit being one the character represents a control. | ||
* [[ | * [[DSPMASK#DSPMASK_CRLF|DSPMASK_CRLF]] | ||
* [[ | * [[DSPMASK#DSPMASK_DATA|DSPMASK_DATA]] | ||
* [[ | * [[DSPMASK#DSPMASK_DISPLAY|DSPMASK_DISPLAY]] | ||
; converttype : Conversion flags which can be ORed together. | ; converttype : Conversion flags which can be ORed together. | ||
* [[ | * [[CVTTYPE#CVTTYPE_CDRA|CVTTYPE_CDRA]] | ||
* [[ | * [[CVTTYPE#CVTTYPE_CTRL7F|CVTTYPE_CTRL7F]] | ||
* [[ | * [[CVTTYPE#CVTTYPE_PATH|CVTTYPE_PATH]] | ||
; subchar_len : Code page substitution length whose value is from 1 to and including 13. A value of 0 the substitution character from the conversion table should be used. | ; subchar_len : Code page substitution length whose value is from 1 to and including 13. A value of 0 the substitution character from the conversion table should be used. | ||
; subchar : Substitution bytes. | ; subchar : Substitution bytes. | ||
; subuni_len : Unicode substitution length whose value can be 0 or 1. A value of 0 the Unicode substitution should come from the conversion table. | ; subuni_len : Unicode substitution length whose value can be 0 or 1. A value of 0 the Unicode substitution should come from the conversion table. | ||
; subuni : If subuni_len is 1, the first element is the Unicode substitution character. | ; subuni : If subuni_len is 1, the first element is the Unicode substitution character. | ||
; state : When set to 0, the conversion object is put into its base conversion state. | ; state : When set to 0, the conversion object is put into its base conversion state. | ||
Line 42: | Line 36: | ||
An integer with values of: | An integer with values of: | ||
<!-- | <!-- | ||
* [[ | * [[Unicode Errors#UCONV_EINVAL|UCONV_EINVAL]] | ||
--> | --> | ||
* [[ | * [[Unicode Errors#ULS_BADATTR|ULS_BADATTR]] | ||
* [[ | * [[Unicode Errors#ULS_SUCCESS|ULS_SUCCESS]] | ||
=== Calling Convention === | === Calling Convention === |
Latest revision as of 18:05, 4 December 2019
Set the attributes of a conversion object.
Syntax
UniSetUconvObject(uconvObj, uconvAttr) ;
Parameters
- uconvObj - UconvObject - input
- The conversion object created from UniCreateUconvObject.
- uconvAttr - uconv_attribute_t - input
- The conversion object attributes.
options
- options
- Substitution options can be:
- UCONV_OPTION_SUBSTITUTION_BOTH
- UCONV_OPTION_SUBSTITUTION_FROM_UNICODE
- UCONV_OPTION_SUBSTITUTION_TO_UNICODE
- endian
- Source and target endian. Source applies to UniUconvFromUcs; target applies to UniUconvToUcs.
- 0x000 Use system endian.
- 0xfeff Use big endian.
- 0xffff Use little endian.
- displaymask
- 32 bit display and data mask. Each bit represents a control character below space (1<<char). The bit being a zero the character represents a glyph. The bit being one the character represents a control.
- converttype
- Conversion flags which can be ORed together.
- subchar_len
- Code page substitution length whose value is from 1 to and including 13. A value of 0 the substitution character from the conversion table should be used.
- subchar
- Substitution bytes.
- subuni_len
- Unicode substitution length whose value can be 0 or 1. A value of 0 the Unicode substitution should come from the conversion table.
- subuni
- If subuni_len is 1, the first element is the Unicode substitution character.
- state
- When set to 0, the conversion object is put into its base conversion state.
Returns
An integer with values of:
Calling Convention
Example Code
UconvObject uconvObj; uconv_attribute_t uconvAttr; integer rc; ... rc = UniSetUconvObject(uconvObj, uconvAttr); ...
Related Functions
Notes
UniSetUconvObject sets the attributes of the conversion object. The given attributes are used to modify the default conversion. It is left up to each conversion to decide which attributes it will recognize.
The substitution character attribute specifies to the conversion object what to do when this is no identical character for a given code element.
OS Version Introduced
OS/2 Warp