June 9, 200421 yr Is it possible ?I tried this (in part of callback):--------------------------------------------[pre]char v_paused = 0;UINT32 mMem;HANDLE hMod=NULL;if ((hMod) == NULL) { hMod = GetModuleHandle("GLOBAL.DLL"); if ((hMod) != NULL) { mMem = ((UINT32) GetProcAddress(hMod,"Linkage")) + 0x0250; //? pause offset ? } else { mMem = 0; }}if (mMem != 0) { nVal=((* (char *)mMem)); // If paused, then the memory value is equals 0, else this value equals 1. if (nVal == 0) { v_paused = 1; //YES } else { v_paused = 0; //NO }}[/pre]--------------------------------------------I don't know what is the wrong: the address (offset) or my code ?Can you tell me the contacts for this question ?
Create an account or sign in to comment