Click here to Skip to main content
15,916,683 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: creating child process in c++ Pin
Cedric Moonen1-Mar-06 0:47
Cedric Moonen1-Mar-06 0:47 
GeneralRe: creating child process in c++ Pin
Ryan Binns1-Mar-06 2:58
Ryan Binns1-Mar-06 2:58 
AnswerRe: creating child process in c++ Pin
Aqueel1-Mar-06 0:48
Aqueel1-Mar-06 0:48 
GeneralRe: creating child process in c++ Pin
Ryan Binns1-Mar-06 2:59
Ryan Binns1-Mar-06 2:59 
AnswerRe: creating child process in c++ Pin
Nemanja Trifunovic1-Mar-06 1:48
Nemanja Trifunovic1-Mar-06 1:48 
GeneralRe: creating child process in c++ Pin
jhwurmbach1-Mar-06 3:05
jhwurmbach1-Mar-06 3:05 
Questionplacing landline call from cyber cafe node Pin
Martin Akula28-Feb-06 23:41
Martin Akula28-Feb-06 23:41 
AnswerRe: placing landline call from cyber cafe node Pin
toxcct28-Feb-06 23:49
toxcct28-Feb-06 23:49 
AnswerRe: placing landline call from cyber cafe node Pin
Maximilien1-Mar-06 2:22
Maximilien1-Mar-06 2:22 
QuestionParallel Data Calculation ( reduce calculation time) Pin
zahid_ash28-Feb-06 23:34
zahid_ash28-Feb-06 23:34 
AnswerRe: Parallel Data Calculation ( reduce calculation time) Pin
Cedric Moonen28-Feb-06 23:54
Cedric Moonen28-Feb-06 23:54 
AnswerRe: Parallel Data Calculation ( reduce calculation time) Pin
John R. Shaw1-Mar-06 0:08
John R. Shaw1-Mar-06 0:08 
AnswerRe: Parallel Data Calculation ( reduce calculation time) Pin
Maximilien1-Mar-06 2:31
Maximilien1-Mar-06 2:31 
AnswerRe: Parallel Data Calculation ( reduce calculation time) Pin
David Crow1-Mar-06 3:12
David Crow1-Mar-06 3:12 
Questionram acces Pin
ss200628-Feb-06 23:26
ss200628-Feb-06 23:26 
AnswerRe: ram acces Pin
John R. Shaw28-Feb-06 23:47
John R. Shaw28-Feb-06 23:47 
AnswerRe: ram acces Pin
toxcct28-Feb-06 23:47
toxcct28-Feb-06 23:47 
AnswerRe: ram acces Pin
khan++1-Mar-06 0:27
khan++1-Mar-06 0:27 
If you want to know what has been loaded into memory, then it depends on the Operating System. If it is NT-based, Windows will hardly let you read anything other than your own variables and program code. It can be done but difficult. You can check for the readable and/or writable memory using some API functions like:
BOOL IsBadReadPtr(const VOID* lp, UINT_PTR ucb);<br />
BOOL IsBadWritePtr(LPVOID lp, UINT_PTR ucb);


If you really want to get to the core, then use MS-DOS. It will let you do anything you want. Wink | ;)
Like:
unsigned far char* p = 0;<br />
p++;<br />
...<br />
...


[Edit]Correction:
I wrote unsigned far char* as unsigned long char* Heh.[/Edit]

this is this.

-- modified at 6:37 Wednesday 1st March, 2006
QuestionAnti-Debugger Pin
zon_cpp28-Feb-06 23:19
zon_cpp28-Feb-06 23:19 
AnswerRe: Anti-Debugger Pin
John R. Shaw28-Feb-06 23:45
John R. Shaw28-Feb-06 23:45 
AnswerRe: Anti-Debugger Pin
khan++1-Mar-06 0:15
khan++1-Mar-06 0:15 
Questionbitmap images Pin
ramyasangeet28-Feb-06 23:15
ramyasangeet28-Feb-06 23:15 
AnswerRe: bitmap images Pin
Vinaya1-Mar-06 0:01
Vinaya1-Mar-06 0:01 
AnswerRe: bitmap images Pin
Nibu babu thomas1-Mar-06 0:02
Nibu babu thomas1-Mar-06 0:02 
Questionmotherboard id vedio card id Pin
ss200628-Feb-06 23:07
ss200628-Feb-06 23:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.