UniQueryLocaleInfo: Difference between revisions
Appearance
No edit summary |
mNo edit summary |
||
Line 2: | Line 2: | ||
=== Syntax === | === Syntax === | ||
UniQueryLocaleInfo(localeObj, result) | UniQueryLocaleInfo(localeObj, result) | ||
=== Parameters === | === Parameters === | ||
; localeObj - [[ | ;localeObj - [[LocaleObject]] - input : The locale object created from [[UniCreateLocaleObject]]. | ||
; result - [[ | ;result - [[UniLconv]] - output : The item to hold the locale conventions information. | ||
=== Constants === | === Constants === | ||
Line 26: | Line 26: | ||
=== Example Code === | === Example Code === | ||
LocaleObject localeObj; | |||
UniLconv result; | |||
integer rc; | integer rc; | ||
... | ... | ||
Line 34: | Line 34: | ||
=== Related Functions === | === Related Functions === | ||
[[ | *[[UniFreeLocaleInfo]] | ||
=== Notes === | === Notes === | ||
'''UniQueryLocaleInfo'' returns information from the localeObj and places information in the [[UniLconv]] structure. ''UniQueryLocaleInfo'' allocates the memory to hold the [[UniLconv]] structure. The application '''must''' free the memory using ''UniFreeLocaleInfo'' when the structure is no longer needed. The ''UniLconv'' structure is filled using the locale provided by localeObj. | |||
=== OS Version Introduced === | === OS Version Introduced === |
Revision as of 17:53, 12 March 2018
Get information about the locale conventions.
Syntax
UniQueryLocaleInfo(localeObj, result)
Parameters
- localeObj - LocaleObject - input
- The locale object created from UniCreateLocaleObject.
- result - UniLconv - output
- The item to hold the locale conventions information.
Constants
None
Returns
An integer with values of:
Module
Define (C/C++)
Export name/Ordinal
Calling Convention
Example Code
LocaleObject localeObj; UniLconv result; integer rc; ... rc = UniQueryLocaleInfo(localeObj, result); ...
Related Functions
Notes
'UniQueryLocaleInfo returns information from the localeObj and places information in the UniLconv structure. UniQueryLocaleInfo allocates the memory to hold the UniLconv structure. The application must free the memory using UniFreeLocaleInfo when the structure is no longer needed. The UniLconv structure is filled using the locale provided by localeObj.
OS Version Introduced
- OS/2 Warp