Can u say how to search some process memory space for some value? How to get it's address?
use OpenProcess to get a handle to your process,then make the memory range you want to read readable using VirtualProtectEx... use ReadProcessMemory to read the memory in that range.
I made something like this long time ago in a memory patcher,if you want a sample,drop me a mail..