GetCurrentLocaleFromTeb

LCID GetCurrentLocaleFromTeb(VOID)
{
	PTEB Teb = (PTEB)GetTeb();

	return (LCID)Teb->CurrentLocale;
}

Last updated