Jump to content

KernCreateUconvObject: Difference between revisions

From EDM2
Created page with "==Synopsis== APIRET APIENTRY KernCreateUconvObject(USHORT codepage, KEEUnicodeStruct* ucs); ==Description== This initializes a data structure related to Unicode conversion. ..."
 
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
This initializes a data structure related to Unicode conversion.
==Synopsis==
==Synopsis==
APIRET APIENTRY KernCreateUconvObject(USHORT codepage, KEEUnicodeStruct* ucs);
APIRET APIENTRY KernCreateUconvObject(USHORT codepage, KEEUnicodeStruct* ucs);
 
==Description==
This initializes a data structure related to Unicode conversion.


==Parameters==
==Parameters==
 
;''codepage'' ([[USHORT]]) - input: Codepage for the data structure.
codepage
;''ucs''  (KEEUnicodeStruct*) - input: Pointer to the unicode conversion structure created.
    Codepage for the data structure.  
ucs
    Pointer to the unicode conversion structure created.  


==Comments==
==Comments==
Finally, this seems to be Unicode support in the kernel...  
Finally, this seems to be Unicode support in the kernel.


[[Category:The OS/2 API Project]]
[[Category:KEE]]

Latest revision as of 03:14, 28 May 2025

This initializes a data structure related to Unicode conversion.

Synopsis

APIRET APIENTRY KernCreateUconvObject(USHORT codepage, KEEUnicodeStruct* ucs);

Parameters

codepage (USHORT) - input
Codepage for the data structure.
ucs (KEEUnicodeStruct*) - input
Pointer to the unicode conversion structure created.

Comments

Finally, this seems to be Unicode support in the kernel.