It can be used to run arbitary Dynamic Link Library in windows,
how can it possibly know the entry point of an arbitary dll?
|
It can be used to run arbitary Dynamic Link Library in windows, how can it possibly know the entry point of an arbitary dll?
| |||||||
feedback
|
|
The answer depends on how much details you need. Basically, it comes down to this:
(Taken from the MSDN article Dynamic-Link Library Entry-Point Function.) So basically, the entry point can be specified inside the DLL, and the operating system's DLL loader knows how to look this up. | |||
|
feedback
|
|
The More information on the | |||
|
feedback
|
|
What do you mean by "run a DLL"? DLLs aren't normal programs, they are just a collection of functions. The entry point itself usually doesn't do much apart from initializing stuff required by other functions in the DLL. The entry point is automatically called when the DLL is loaded (you can use If you want to call a specific function after loading the DLL, you can use | |||
|
feedback
|