mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
11 lines
167 B
C++
11 lines
167 B
C++
#include "Win32Helper.h"
|
|
|
|
PTEB GetTeb(VOID)
|
|
{
|
|
#if defined(_WIN64)
|
|
return (PTEB)__readgsqword(0x30);
|
|
#elif defined(_WIN32)
|
|
return (PTEB)__readfsdword(0x18);
|
|
#endif
|
|
}
|