Read memory of 64bit process address
问题 I try to read memory at address of a process that's the code : std::cout << "Found Process " << procEntry32.szExeFile << " With process ID " << procEntry32.th32ProcessID << std::endl; hProc == OpenProcess(PROCESS_ALL_ACCESS, FALSE, procEntry32.th32ProcessID); pID = procEntry32.th32ProcessID; if (hProc == NULL) { std::cout << "failed getting handle" << std::endl; } CloseHandle(hProcSnap); std::cout << "hProcSnap handle closed ... " << std::endl; return true; Code Output I use DWORD64 This code