Memory access at run time
-
I want to know whether this is possible to access RAM through VC++? If yes then can i read or write data in RAM? Please reply soon........ Samir Sood
Almost whatever you do in C++, you access RAM :) Of course you can only access memory managed by your process, otherwise your program will generate "Access violation" exception. Vagif Abilov MCP (Visual C++) Oslo, Norway Hex is for sissies. Real men use binary. And the most hardcore types use only zeros - uppercase zeros and lowercase zeros. Tomasz Sowinski
-
I want to know whether this is possible to access RAM through VC++? If yes then can i read or write data in RAM? Please reply soon........ Samir Sood
You can access all memory mapped to application address space, randomly mapped to physical RAM by OS. If you need to access a physical RAM, you need to go down to driver level, if it's possible at all. Pavel Sonork 100.15206
-
You can access all memory mapped to application address space, randomly mapped to physical RAM by OS. If you need to access a physical RAM, you need to go down to driver level, if it's possible at all. Pavel Sonork 100.15206
-
VirtualQueryEx