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

What is Multithreading

1 Answers   Invensys,


Which CPrintInfo member variable must be set for multiple page printouts?

1 Answers  


What is stack size in win32 program?

1 Answers   HCL,


Given two processes, how can they share memory?

2 Answers   Microsoft,


How to find the mouse entering an image?..while entering need to display next image...

4 Answers  






What is the difference between ASSERT and VERIFY?

2 Answers  


How to convert a CString variable to char* or LPTSTR?

5 Answers   Dover,


Differ GetMessage, PostMessage & PeakMessage?

4 Answers   Symphony,


Name the Synchronization objects?

2 Answers  


Explain Doc/View architecture

6 Answers   Huawei,


what is message Testing ?

1 Answers   L&T,


what is message loop how mfc does it internally?

4 Answers   Aspire,


Categories