NWUXGetByteFunctions
Returns the functions used for handling unmappable bytes
#include <nunicode.h>
N_EXTERN_LIBRARY(nint) NWUXGetByteFunctions (
pCONVERT byteUniHandle,
NMBYTE *noMapByteFunc,
SCBYTE *scanByteFunc,
PRBYTE *parseByteFunc);
uses netwin32
Function NWUXGetByteFunctions
(byteUniHandle : pCONVERT;
noMapByteFunc : NMBYTE;
scanByteFunc : SCBYTE
parseByteFunc : PRBYTE
): nint;
The system-supplied NoMap byte function, which is not enabled by default, converts an unmappable byte 0xNN into the unicode string "[NN]".
The system-supplied scan/parse byte functions, which are enabled by default, scan for occurrences of the byte string "[NNNN]" (NNNN being any four hexadecimal digits) and converts the string to the single Unicode character 0xNNNN.
See exgbfunc.c for sample code.