mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
9 lines
128 B
C++
9 lines
128 B
C++
#include "Win32Helper.h"
|
|
|
|
LCID GetCurrentLocaleFromTeb(VOID)
|
|
{
|
|
PTEB Teb = (PTEB)GetTeb();
|
|
|
|
return (LCID)Teb->CurrentLocale;
|
|
}
|