Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Types of DLL's

Answers were Sorted based on User's Feedback



Types of DLL's..

Answer / anuj

Two types of DLL:

1. Extenxsion DLl: These Dll only used in MFC application.
these dll are not derived from CWinApp class. By this Dll
we can export the function and classes both. In this Dll
DllMain function is there for intialisation

2. Regular Dll : These Dll used in MFC and non-MFc both
type of applications. This is derived from CwinApp class.
We can export function in this dll.

Is This Answer Correct ?    33 Yes 6 No

Types of DLL's..

Answer / sanddy

1. Extenxsion DLl: These Dll only used in MFC application.
these dll are not derived from CWinApp class. By this Dll
we can export the function and classes both. In this Dll
DllMain function is there for intialisation

2. Regular Dll : These Dll used in MFC and non-MFc both
type of applications. This is derived from CwinApp class.
We can export function in this dll.

Is This Answer Correct ?    15 Yes 3 No

Types of DLL's..

Answer / guest

1. Extension DLL
2. Regular DLL

Is This Answer Correct ?    15 Yes 4 No

Types of DLL's..

Answer / chandrasekharreddy s

Two Types
1. Regular DLLs : These DLLs can be used by C++ and other
language applications also. These DLLs will expose the
function in 'C' style.

2. Extension DLLs: Exclusively for C++ client. These DLLs
will expose the functions in 'C++' name mangling technique.
These symbols can be understood by only C++ client.

Is This Answer Correct ?    12 Yes 9 No

Types of DLL's..

Answer / angel17440

This topic provides information to help you determine the kind of DLL to build.

Different Kinds of DLLs Available
Using Visual C++, you can build Win32 DLLs in C or C++ that do not use the Microsoft Foundation Class (MFC) library. You can create a non-MFC DLL project with the Win32 Application Wizard.
http://msdn.microsoft.com/en-us/library/9se914de.aspx

The MFC library itself is available, in either static link libraries or in a number of DLLs, with the MFC DLL Wizard. If your DLL is using MFC, Visual C++ supports three different DLL development scenarios:

Building a regular DLL that statically links MFC

Building a regular DLL that dynamically links MFC

Building an MFC extension DLL, which always dynamically link MFC

Is This Answer Correct ?    3 Yes 3 No

Types of DLL's..

Answer / ctharam

DLL means (D)ynamic (L)ink (L)ibrary.

it has two Kinds. 1) Regular DLL 2) Extension DLL

1) Regular DLL:-
a) nothing but all C-language Library functions.
b) supports Static DLL and Dynamic Dll
c)Supports , Non-Library Functions
d)For Example, Win32 Application(SDK)
2) Extension DLL:-
a)Nothing but Extension all C++ Library Functions.
b)Only Support Dynamic DLL's.
c)supports, MFC Library Functions.
d)For Example, MFC applications.

Is This Answer Correct ?    1 Yes 2 No

Types of DLL's..

Answer / karthik

Three types of DLL :
*Regular DLL
*Extension DLL
*Custom Control DLL

Is This Answer Correct ?    1 Yes 2 No

Types of DLL's..

Answer / sahadev tarei

3 types of DLL

1.SDK DLL:Old type
2.Extension DLL: These DLL’s exposes variables and
functions to the client application. It can expose C++
functions and C++ classes to be used in your application.

3.Regular DLL: MFC extension DLL’s can be used only with
MFC applications. If you want a dll to be used by a wider
range of applications then use a regular DLL.

Is This Answer Correct ?    12 Yes 15 No

Types of DLL's..

Answer / pushpa

Two types of DLL.
1.Extension DLL
2.Dynamic DLL

Is This Answer Correct ?    5 Yes 13 No

Types of DLL's..

Answer / vijay visana

we can mention Resouce only dll also

Is This Answer Correct ?    3 Yes 18 No

Post New Answer

More MFC Interview Questions

how does conditionally close the Dialog Box ?

2 Answers   Infotech,


1.Get string1,string2,string3 1.add string1 and 2,string1 and 3. 2.replace vowels with T 3.count number of T. 4.remove T 5.COPY string1 to stringf. 6.restore string1. print the following 1.Number of T 2.StringF 3.string1+string2+string3 Use pointers and functions

1 Answers  


What is the difference between the ASSERT and VERIFY macros?

4 Answers  


1)How to load an icon on a button as Dynamically ?

1 Answers   HCL,


Tell me the different controls in MFC ?

5 Answers  


what is the use of AFX_MANAGE_STATE ?

4 Answers   HCL,


Explain StretchBlt and BitBlt

1 Answers  


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

4 Answers  


Will there be any difference in the image buffer size if it is loaded in from CString to LPTSTR using GetBuffer()? lptstr = string.GetBuffer(0);

2 Answers  


How you find memory leaks?

4 Answers   ABB,


If there is more than 100 control in a window how we can change the Taborder of a controls

4 Answers   Satyam,


1)how to Display the File Dialog Box, in MFC ?

1 Answers  


Categories