hi, thank you for this nice project, do you have plans to port to x86 and wow?
I have tried some things:
/* Get the pointer to the CLIENTINFO struct. &TEB.Win32ClientInfo */
#ifdef _M_IX86
d->pvWin32ClientInfo = (void *)((char *)d->pvTeb + 0x6cc);
#else
//else
d->pvWin32ClientInfo = (void *)((char *)d->pvTeb + 0x800);
#endif
/* offsetof( struct CLIENTINFO, pDeskInfo ) */
if( ( G->prog->dwOSMajorVersion == 5 ) && ( G->prog->dwOSMinorVersion == 0 ) ) // win2k
offsetof_pDeskInfo = 20;
else // XP+
#ifdef _M_IX86
offsetof_pDeskInfo = 24;
#else
offsetof_pDeskInfo = 32;
#endif
but it is crashing, any idea how to solve the issue?
hi, thank you for this nice project, do you have plans to port to x86 and wow?
I have tried some things:
but it is crashing, any idea how to solve the issue?