Click here to Skip to main content
15,911,848 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Windows 7 visual studio 2008 problem. Pin
Richard MacCutchan30-Jul-12 21:36
mveRichard MacCutchan30-Jul-12 21:36 
GeneralRe: Windows 7 visual studio 2008 problem. Pin
Richard MacCutchan30-Jul-12 21:44
mveRichard MacCutchan30-Jul-12 21:44 
GeneralRe: Windows 7 visual studio 2008 problem. Pin
Member 419459331-Jul-12 6:39
Member 419459331-Jul-12 6:39 
GeneralRe: Windows 7 visual studio 2008 problem. Pin
Richard MacCutchan31-Jul-12 7:03
mveRichard MacCutchan31-Jul-12 7:03 
GeneralRe: Windows 7 visual studio 2008 problem. Pin
Member 419459331-Jul-12 7:30
Member 419459331-Jul-12 7:30 
GeneralRe: Windows 7 visual studio 2008 problem. Pin
Richard MacCutchan31-Jul-12 22:29
mveRichard MacCutchan31-Jul-12 22:29 
GeneralRe: Windows 7 visual studio 2008 problem. Pin
Member 41945931-Aug-12 6:20
Member 41945931-Aug-12 6:20 
GeneralRe: Windows 7 visual studio 2008 problem. Pin
Richard MacCutchan1-Aug-12 7:03
mveRichard MacCutchan1-Aug-12 7:03 
GeneralRe: Windows 7 visual studio 2008 problem. Pin
Member 41945931-Aug-12 9:24
Member 41945931-Aug-12 9:24 
GeneralRe: Windows 7 visual studio 2008 problem. Pin
Richard MacCutchan1-Aug-12 21:29
mveRichard MacCutchan1-Aug-12 21:29 
GeneralRe: Windows 7 visual studio 2008 problem. Pin
Member 41945932-Aug-12 6:22
Member 41945932-Aug-12 6:22 
GeneralRe: Windows 7 visual studio 2008 problem. Pin
Member 419459331-Jul-12 7:37
Member 419459331-Jul-12 7:37 
GeneralThe third way to load Dynamic-Link Libraries? Pin
Falconapollo29-Jul-12 4:58
Falconapollo29-Jul-12 4:58 
A DLL can be loaded explicitly by using LoadLibrary and GetProcAddress functions (sometimes called "run-time linking" or "manual linking") or implicitly by linking so called import library into your program and declaring functions in conventional way (sometimes called "load-time linking" or "automatic linking"). The latter method has two varieties: pre-load and delay-load. Pre-loaded DLLs are loaded instantly and unconditionally at the start of the program. Delay-loaded DLLs are loaded when (if) they are first used.

So, in this terms, there are still only two major ways to load a DLL: explicit and implicit. The latter load method just happens to have two sub-varieties. Some people might prefer to interpret this hierarchical classification as a flat one, ending up with three linking/loading methods.

Some companies ask the other ways to load Dynamic-Link Libraries(besieds explict and implict) in their interview.

But I wonder whether exists other ways to load the Dynamic-Link Libraries?

Any help will be appreciated!

modified 29-Jul-12 20:40pm.

GeneralRe: The third way to load Dynamic-Link Libraries? Pin
Richard Andrew x6429-Jul-12 6:06
professionalRichard Andrew x6429-Jul-12 6:06 
GeneralRe: The third way to load Dynamic-Link Libraries? Pin
pasztorpisti29-Jul-12 7:51
pasztorpisti29-Jul-12 7:51 
GeneralRe: The third way to load Dynamic-Link Libraries? Pin
Richard Andrew x6429-Jul-12 8:08
professionalRichard Andrew x6429-Jul-12 8:08 
GeneralRe: The third way to load Dynamic-Link Libraries? Pin
pasztorpisti29-Jul-12 8:20
pasztorpisti29-Jul-12 8:20 
GeneralRe: The third way to load Dynamic-Link Libraries? Pin
Richard Andrew x6429-Jul-12 8:22
professionalRichard Andrew x6429-Jul-12 8:22 
GeneralRe: The third way to load Dynamic-Link Libraries? Pin
pasztorpisti29-Jul-12 8:28
pasztorpisti29-Jul-12 8:28 
GeneralRe: The third way to load Dynamic-Link Libraries? Pin
pasztorpisti29-Jul-12 12:51
pasztorpisti29-Jul-12 12:51 
GeneralRe: The third way to load Dynamic-Link Libraries? Pin
Richard Andrew x6429-Jul-12 13:06
professionalRichard Andrew x6429-Jul-12 13:06 
GeneralRe: The third way to load Dynamic-Link Libraries? Pin
pasztorpisti29-Jul-12 13:07
pasztorpisti29-Jul-12 13:07 
GeneralRe: The third way to load Dynamic-Link Libraries? Pin
pasztorpisti30-Jul-12 4:31
pasztorpisti30-Jul-12 4:31 
GeneralRe: The third way to load Dynamic-Link Libraries? Pin
Richard Andrew x6430-Jul-12 6:07
professionalRichard Andrew x6430-Jul-12 6:07 
GeneralRe: The third way to load Dynamic-Link Libraries? Pin
jschell29-Jul-12 6:49
jschell29-Jul-12 6:49 

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.