Code:
DWORD *MAIN_3 = (DWORD*)(*(DWORD*)ADDRRESS); MessageBoxA (NULL,"Readed",MAIN_3,MB_OK);
Und die andere frage
Code:
void Start()
{
bool Delay;
Delay=0;
char * CAPTION = "DLL";
while(true)
{
if (GetKeyState(VK_F3) < 0)
{
if(Delay=0){
Delay = 1;
MessageBoxA (NULL,"Delay ON",CAPTION,MB_OK);
}else{
Delay = 0;
MessageBoxA (NULL,"Delay OFF",CAPTION,MB_OK);
}
}
if(Delay=1)
{
DELAYZ();
}
}
}






