Advertisement
Guest User

Untitled

a guest
Dec 12th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. template <class T>
  2.     T Read(const DWORD dwAddress)
  3.     {
  4.         T _read;
  5.         ReadProcessMemory(_process, LPVOID(dwAddress), &_read, sizeof(T), NULL);
  6.         return _read;
  7.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement