UniCharToOEM
UniCharToOEM(
unsigned short uniChar
)
This service maps a unicode character to its equivalent in the current OEM codepage. If there is no corresponding character in the OEM codepage, it is converted to an underscore character (ASCII code 0x5f).
- uniChar
- Supplies the unicode character that needs to be converted into OEM.
- Returns the corresponding character in the current OEM codepage, "_" if no such character. If the OEM codepage used double-byte encoding, [AH] contains the lead byte and [AL] contains the trail byte. On a single-byte encoding, [AL] contains the OEM character.