What is the difference between Extension DLL and Regular
DLL?

Answers were Sorted based on User's Feedback



What is the difference between Extension DLL and Regular DLL?..

Answer / kaj telenar

An extension DLL is also known as an MFC extension dll or
and AFXDLL. It can only work with MFC applications and it
shares memory space with the MFC application that it is
linked with. The DllMain needs to call special routines to
let MFC know that it is linked in; otherwise you get weird
memory problems. Extension DLLs must use the dll version of
MFC, rather than the statically linked version.

A regular DLL can be written in any language, generally
exports routines in "PASCAL" format, and uses its own
memory pool.

Is This Answer Correct ?    24 Yes 3 No

What is the difference between Extension DLL and Regular DLL?..

Answer / utpal kr. kashyap

1. Extension DLL only used in MFC applications while Regular
DLL used in MFC and non - MFC applications.

2. Extension DLL are not derived from CWinAppl classes while
Regular DLL is derived from CWinApp class.

3. Extension DLL can export function and classes while in
the case of Regular DLL can export only functions.

Is This Answer Correct ?    19 Yes 7 No

What is the difference between Extension DLL and Regular DLL?..

Answer / varaprasadk

An extension dll can be used in the same language as it is
written (for example C++ in combination with MFC). This
means it is easier to create them, and you can even export
whole classes from these dll's.

A regular dll is a dll that can be used by any language,
not matter in what language it is written. It is very hard
to learn writing these dll's.

Is This Answer Correct ?    17 Yes 10 No

What is the difference between Extension DLL and Regular DLL?..

Answer / k.s.j.prem anand

Regular DLL can export only functions, and it can be used
across C, C++ and MFC based Applications.

The Extension DLL can export classes and class member
functions and this DLL can be used only with MFC based
client Applications.

Is This Answer Correct ?    13 Yes 7 No

What is the difference between Extension DLL and Regular DLL?..

Answer / debasis mahapatra

An extension DLL supports a C++ interface. In other words,
the DLL can export whole classes and the client can
construct objects of those classes or derive classes from
them. An extension DLL dynamically links to the code in the
DLL version of the MFC library. Therefore, an extension DLL
requires that your client program be dynamically linked to
the MFC library (the AppWizard default) and that both the
client program and the extension DLL be synchronized to the
same version of the MFC DLLs (mfc42.dll, mfc42d.dll, and so
on). Extension DLLs are quite small; you can build a simple
extension DLL with a size of 10 KB, which loads quickly.
If you are working on the Win32 environment then
MFC regular DLL.
The regular DLL is two types: Static DLL and dynamic DLL.
If you choose static linking, your DLL will include a copy
of all the MFC library code it needs and will thus be
self-contained. A typical Release-build statically linked
regular DLL is about 144 KB in size. If you choose dynamic
linking, the size drops to about 17 KB but you'll have to
ensure that the proper MFC DLLs are present on the target
machine.

Is This Answer Correct ?    3 Yes 1 No

What is the difference between Extension DLL and Regular DLL?..

Answer / parathysarathy

all answer is exactly right

Is This Answer Correct ?    7 Yes 10 No

Post New Answer

More MFC Interview Questions

Why Array Index starts from Zero

30 Answers   HCL,


what is the size of a process

2 Answers   E Logic, IBM,


Explain in sort What is CTargetObject?

2 Answers  


How you create a button dynamically?

2 Answers  


1)How to change the size of a button at run time ?

1 Answers  






What is CSingleDocTemplate?

1 Answers  


What is the size of class

18 Answers   Aircom,


If application hangs while SendMessage is waiting for the result, how you handle it?

2 Answers  


What is a critical section and how is it implemented?

2 Answers  


Tell us something about MFC?

7 Answers   Microsoft,


Have you ever used win32 APIs ?

4 Answers   Microsoft,


if both base and derived class have the constructors if i create an object for derive class which class constructor is executed first

10 Answers   Siemens, Symphony,


Categories