Process-Adress
-
Hi ! I want to write a program like GameWizard in Windows (I havn't found such a program yet). I found information to enumerate all processes but I havn't found anything to get the adress of a process in memory (adress start and end). Can anyone help me, please!! TIA Tommy
-
Hi ! I want to write a program like GameWizard in Windows (I havn't found such a program yet). I found information to enumerate all processes but I havn't found anything to get the adress of a process in memory (adress start and end). Can anyone help me, please!! TIA Tommy
Each Win32 process has its own independent address space, of which only the upper part is shared system wide. For example, address 0x10000000 can point to different data in process1 vs. process2. http://www.amazon.com/exec/obidos/ASIN/0130869856
-
Each Win32 process has its own independent address space, of which only the upper part is shared system wide. For example, address 0x10000000 can point to different data in process1 vs. process2. http://www.amazon.com/exec/obidos/ASIN/0130869856
I thought it was clear that I ment address space when I wrote of "address start" (base address) and "address end". I know that it's called Address Space but I think the address space MUST have a beginning (I think this is the BASE ADDRESS of a process, which I already figured out how to get it) and I also think it should have an END because I don't think a process uses all of the momory in a system. Ok what I want to know is how to get the "End-Address" of the ADRESS SPACE. By the way I'm using Win9x. Thanks for your reply Tommy