NWUXGetUniFunctions
Returns the functions used for handling unmappable Unicode characters
#include <nunicode.h>
N_EXTERN_LIBRARY(nint) NWUXGetUniFunctions (
pCONVERT byteUniHandle,
NMUNI *noMapUniFunc,
SCUNI *scanUniFunc,
PRUNI *parseUniFunc);
uses netwin32
Function NWUXGetUniFunctions
(byteUniHandle : pCONVERT;
noMapUniFunc : NMUNI;
scanUniFunc : SCUNI;
parseUniFunc : PRUNI
): nint;
The system-supplied NoMap Unicode function, which is enabled by default, converts an unmappable Unicode character 0xNNNN into the byte string "[NNNN]".
The system-supplied scan/parse Unicode functions, which are not enabled by default, scan for occurrences of the Unicode string "[NN]" (NN being any two hexadecimal digits) and converts the string to the single byte character 0xNN.
See exgufunc.c for sample code.