flagsA == strings.flagCHARTBL
flagsW == strings.flagCHARTBL or strings.flagUNICODE

charTblA: rb 256
charTblSrcA: ub '../inc/string/emul_xxxx tables/emul_xxxx.win1251',0
ReadFileA(charTblA charTblSrcA 0 256)

charTblW: rb 65'536
charTblSrcW: ub '../inc/string/emul_xxxx tables/emul_xxxx.unicode',0
ReadFileA(charTblW charTblSrcW 0 65'536)

thisA: ub 'eLLo',0
thisW: ui16 'e','L','L','o',0

hereA: ub 'hello kitty!',0
hereW: ui16 'h','e','l','l','o',' ','k','i','t','t','y','!',0

start == 1
stop == 0

_A == posz(flagsA charTblA thisA hereA start stop)
_W == posz(flagsW charTblW thisW hereW start stop)
