about the naming conventions

  • Thread starter Thread starter tony
  • Start date Start date
T

tony

Hello!

I just want to know the correct naming conventions.

Is it correct to say that a DLL is a executable or is it only an exe file
that is allowed to be named executable.

//Tony
 
tony said:
Hello!

I just want to know the correct naming conventions.

Is it correct to say that a DLL is a executable or is it only an exe file
that is allowed to be named executable.

//Tony


Hi,
A DLL is not an executable. It is an In-Process Server. That
means, a DLL will require an executable to use its functionality. The
literal meaning of In-Process Server means, the dll needs another
process to execute. But, the executable is self Dependant, and does not
need other process for its execution.
Also, you cannot just change the extension of files so that they
may be considered executables or DLL's


Thanks !
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top