NTSTATUS __stdcall NormBuffer__GetCurrentOutputChar(WCHAR **ppszLocation){
unsigned __int16 **v1;
unsigned __int16 *v2;
unsigned int v3;
v2 = *v1;
v3 = **v1;
if( v3 - 55296 <= 0x7FF )
{
if( v3 < 0xDC00 )
v3 = *++v2 + ((v3 - 55287) << 10);
else
v3 += (*--v2 - 55287) << 10;
}
*v1 = v2;
return v3;
}