Click here to Skip to main content
15,886,724 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: DLL load issue Pin
led mike16-Oct-08 7:19
led mike16-Oct-08 7:19 
GeneralRe: DLL load issue Pin
cmk16-Oct-08 12:42
cmk16-Oct-08 12:42 
GeneralRe: DLL load issue Pin
led mike17-Oct-08 5:21
led mike17-Oct-08 5:21 
GeneralRe: DLL load issue Pin
George_George17-Oct-08 3:19
George_George17-Oct-08 3:19 
GeneralRe: DLL load issue Pin
led mike17-Oct-08 5:20
led mike17-Oct-08 5:20 
GeneralRe: DLL load issue Pin
George_George17-Oct-08 5:21
George_George17-Oct-08 5:21 
GeneralRe: DLL load issue Pin
George_George17-Oct-08 3:18
George_George17-Oct-08 3:18 
GeneralRe: DLL load issue Pin
cmk17-Oct-08 7:30
cmk17-Oct-08 7:30 
Also read:
http://support.microsoft.com/kb/100635[^]
http://support.microsoft.com/kb/103858[^]

When thinking about what's in physical memory don't think in terms of the module (dll) as a whole, think in terms of its pages.

Only those pages that have been read will have been loaded from disk into memory.

Only those pages that have been written to (e.g. data page or code page with fix-ups) will have been copied in memory.

At any given point in time a non-copied page could be freed, and loaded again later from the disk when required.

At any given point in time a copied page could be freed from memory and put in the pagefile.

Even after your last app, that uses a given dll, exits pages of the dll may still be using physical memory in the page cache until they expire.

So, the simple answer, the one i originally gave, is usefull for thinking about what happens in general, because thinking about what happens in detail isn't much use.

...cmk

The idea that I can be presented with a problem, set out to logically solve it with the tools at hand, and wind up with a program that could not be legally used because someone else followed the same logical steps some years ago and filed for a patent on it is horrifying.
- John Carmack

GeneralRe: DLL load issue Pin
George_George20-Oct-08 22:58
George_George20-Oct-08 22:58 
QuestionGrid Pin
skvc16-Oct-08 2:36
skvc16-Oct-08 2:36 
AnswerRe: Grid Pin
Rajesh R Subramanian16-Oct-08 2:39
professionalRajesh R Subramanian16-Oct-08 2:39 
AnswerRe: Grid Pin
Maximilien16-Oct-08 3:08
Maximilien16-Oct-08 3:08 
AnswerRe: Grid Pin
Hamid_RT16-Oct-08 3:59
Hamid_RT16-Oct-08 3:59 
QuestionHow to detect mouse click on application taskbar button??? Pin
tarunclassic16-Oct-08 1:57
tarunclassic16-Oct-08 1:57 
AnswerRe: How to detect mouse click on application taskbar button??? Pin
Rajesh R Subramanian16-Oct-08 2:08
professionalRajesh R Subramanian16-Oct-08 2:08 
GeneralRe: How to detect mouse click on application taskbar button??? Pin
tarunclassic16-Oct-08 2:21
tarunclassic16-Oct-08 2:21 
GeneralRe: How to detect mouse click on application taskbar button??? Pin
only_jack16-Oct-08 10:49
only_jack16-Oct-08 10:49 
GeneralRe: How to detect mouse click on application taskbar button??? Pin
tarunclassic16-Oct-08 19:34
tarunclassic16-Oct-08 19:34 
GeneralRe: How to detect mouse click on application taskbar button??? Pin
tarunclassic17-Oct-08 3:25
tarunclassic17-Oct-08 3:25 
GeneralRe: How to detect mouse click on application taskbar button??? Pin
only_jack18-Oct-08 8:31
only_jack18-Oct-08 8:31 
QuestionDrawText in animatewindow. [modified] Pin
gothic_coder16-Oct-08 1:18
gothic_coder16-Oct-08 1:18 
AnswerRe: DrawText in animatewindow. Pin
Jose David Pujo16-Oct-08 1:29
Jose David Pujo16-Oct-08 1:29 
GeneralRe: DrawText in animatewindow. Pin
gothic_coder16-Oct-08 1:44
gothic_coder16-Oct-08 1:44 
GeneralRe: DrawText in animatewindow. Pin
Jose David Pujo16-Oct-08 1:48
Jose David Pujo16-Oct-08 1:48 
GeneralRe: DrawText in animatewindow. Pin
gothic_coder16-Oct-08 2:04
gothic_coder16-Oct-08 2:04 

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.