473,480 Members | 1,940 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

What is the relation/difference between a header file, dll and library?

8 New Member
What is the relation/difference between a header file, dll and library?
Sep 29 '05 #1
11 20158
lini
12 New Member
A header file contains declaration of something (constants, classes, ...), usually ends with a .h or hpp extension.

A DLL (dynamically linked library) is a binary file (with .dll, .ocx, .a, ... extentions), containing functions, resources, ... and can be linked to your program at run-time. In order to use a DLL you need to include the corresponding header file, which declares things in the DLL, so that your program gets compiled. The DLL file is automatically loaded (by system) at run-time when your executable program invokes functions and asks for resources.

A library file (also called static library, with .lib extension usually) is a binary file which alsocontains functions and variables like DLL, but resolved at compile-time, meaning they need to be provided at link-time.

Dynamic and static libraries are often provided together with header file (but no source file, which contains the implementation) when the provider lets you use his/her functions/services but doesnt give you access to the implementation.

Is that what you ask?
Dec 15 '08 #2
donbock
2,426 Recognized Expert Top Contributor
Lini has summarized the generic meaning of "DLL". The same term is also used for the specific form of dynamic-link-library used by Windows and OS/2. Do you know whether you're referring to term generically or specifically in a Microsoft context?
Dec 15 '08 #3
MrPickle
100 New Member
@lini
Is there a difference between .h & .hpp?
Dec 15 '08 #4
Banfa
9,065 Recognized Expert Moderator Expert
Not really. .h is a header file, .hpp is also a header file but typically only used in a C++ environment.

However when you get right down to it a header file can have any extension you want, it is only convention that uses h (for header).
Dec 15 '08 #5
Balasing
1 New Member
Thanks. Good & clear answer pal
Jul 7 '09 #6
RedSon
5,000 Recognized Expert Expert
What are the memory requirements between static and dynamic libs? For example how is the heap and stack represented on each? When a process uses a DLL does it make a copy of the whole DLL? Do singleton classes implmented in DLLs remain a singleton between processes?

What is a "DLL boundry"? Why is communicating across DLL boundaries difficult or complicated to achieve?

I recently switched to a different project and I'm afraid I don't know what I'm doing now... :(
Jul 9 '09 #7
JosAH
11,448 Recognized Expert MVP
@RedSon
In every self respecting Linux/Unix distribnution the 'text segments' of .so files (the equivalent of dll files) are only loaded once, so if two or more people use the same .so file the text segment (the part where the code is) is loaded only once). When the last user stops his/her process the segment is unloaded.

Static libraries don't have that advantage, i.e. they are completely loaded by every process that was linked against the static library because the code is part of the entire process, i.e. executable file.

I assume the same scenario works for Microsoft's .dll files.

kind regards,

Jos
Jul 9 '09 #8
Banfa
9,065 Recognized Expert Moderator Expert
It is the same for Windows DLLs Jos.

One of the main differences between 16bit and 32bit windows is/was that under 16 bit windows memory used by a DLL was shared by all programs using the DLL. That is in 16bit Windows you could use a DLL to transfer data between programs easily.

In 32bit Windows the data used by DLLs is not shared between programs, each program instance of the DLL uses different data mapped into the programs virtual memory space. However the text segment (code) is only loaded once I believe.

Because the DLL and the application are different processes there are some class issues. For instance static data in a class used in a DLL and an application using the DLL results in the application and the DLL each having their own copy of the static data.
Jul 9 '09 #9
RedSon
5,000 Recognized Expert Expert
@Banfa
Can you explain this in more detail?
Jul 9 '09 #10
JosAH
11,448 Recognized Expert MVP
@RedSon
I don't understand it either; static class data is stored in the data segment and nowadays data segments are copied per process; it used to be different in the old days where data segments where shared between processes in MS Windows.

kind regards,

Jos
Jul 10 '09 #11
Banfa
9,065 Recognized Expert Moderator Expert
Sorry I thought I had better come back and explain myself. While I was sure I had heard of problems involving DLLs and static class data I can find no backing for this statement.

You do have to make sure you export everything from the DLL correctly or you would get linker errors (unresolved symbols) but that isn't terribly surprising not the blanket of doom I initially implied.

Our company coding standards suggest caution when using inline functions with classes in a DLL or shared library. If you plan on being able to update the DLL/so without changing the application (which is in theory possible) the inline functions cause a problem because they would be compiled straight into the application requiring an application rebuild rather than a simple DLL rebuild and redistribute.

However since there is a fair amount of evidence that our company C++ coding standard was written before the C++ standard was ratified I find myself not willing to trust it on this without a more recent corroboration that this behaviour is still true (although logically it does make sense).

A-hem,
nothing to see here
move along please
Jul 10 '09 #12

Sign in to post your reply or Sign up for a free account.

Similar topics

31
2743
by: Steven T. Hatton | last post by:
If a header is not necessarily a source file, and the sequences delimited by < and > in header names aren't necessarily valid source file names, what exactly is a header? -- p->m == (*p).m == p.m...
4
2587
by: s.subbarayan | last post by:
Dear all, How different is a header file from a library file in C?Under what circumstance u go for library and under what circumstance u go for header?Afaik,both have some declarations which can...
0
3903
by: Lokkju | last post by:
I am pretty much lost here - I am trying to create a managed c++ wrapper for this dll, so that I can use it from c#/vb.net, however, it does not conform to any standard style of coding I have seen....
1
4553
by: C. Jayachandran | last post by:
I've inherited some code which has const std::string values defined in a header file, like const std::string str = "foo"; This causes a large amount of bloat, as all the compilation units...
11
2779
by: Gary Wessle | last post by:
Hi is it right to have a line like #include <path/to/header.hfor a library on my system, in my header file and use some functions provided by this library in the implementation file (file.cpp)...
2
1218
by: anarghya | last post by:
what does the header file contains?
3
1976
by: silverWolf | last post by:
2. What is the relation between header file ( #include<iostream.h>) and input output function?
2
8995
by: shariquehabib | last post by:
Hi All, Can any one let me know the correct diffrence between static library and dynamic library while using C language? ------------- Sharique
4
3759
by: Sivani | last post by:
i need the header file for Sleep in Keil Operating system
0
7041
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
6908
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7044
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7084
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6739
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5337
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
2995
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1300
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
563
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.