Hi
I use a pointer to specify some kind of "shared memory" which I use to exchange data between different processes/threads. Now I would like to have a hex dump of the content of the shared buffer. Does anyone know how to do that?
thanks, R
|
1
|
Hi I use a pointer to specify some kind of "shared memory" which I use to exchange data between different processes/threads. Now I would like to have a hex dump of the content of the shared buffer. Does anyone know how to do that? thanks, R |
||||||
|
|
|
Use casts, of course :-) The function should look something like this:
Then in use:
where somesize is how much you want to dump. |
||||||
|
|
|
On Windows, you can use |
||
|
|