5,692,513 members and growing! (13,934 online)
Email Password   helpLost your password?
General Programming » DLLs & Assemblies » General     Intermediate

The Ultimate (DLL) Header File

By Joseph M. Newcomer

Here is the ultimate header file that makes multiple declaration compiler errors a thing of the past.
VC6, C++Windows, NT4, Win2K, Visual Studio, Dev

Posted: 7 Nov 2000
Updated: 7 Nov 2000
Views: 99,104
Bookmarked: 55 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
32 votes for this Article.
Popularity: 6.24 Rating: 4.14 out of 5
0 votes, 0.0%
1
0 votes, 0.0%
2
2 votes, 22.2%
3
2 votes, 22.2%
4
5 votes, 55.6%
5

Introduction

Efficient and appropriate use of header files requires a few tricks. If you simply define a set of functions, everything works fine. No problems. If the file is included more than once because of a complex #include chain, you get redundant declarations. Most compilers, including the Microsoft C/C++ compilers, simply ignore these redundant function and variable declarations. However, if there are any class, typedef, struct, or some other declarations, the compiler will complain bitterly if they are seen twice, claiming they are duplication declarations. It does not choose to see if the structures actually are identical. So there is an idiom to avoid duplication declarations, which is to put the entire contents of the header file in an #ifndef, skipping the body if a symbol defined within the body is already defined. This works acceptably well for short files, but is a performance disaster for lengthy files, since each line of the file must be read. For standard header files, precompiled headers work well in eliminating this problem, but it is harder to justify putting your own headers into a precompiled header file since the effects of a simple change result in a massive recompilation (stdafx.h has to be recompiled). Microsoft has added a #pragma that means the header file is read only once. All of this is shown in detail below.

DLL Headers: Additional Complexity

When constructing a DLL, you need a header file to interface to it. However, the obvious solutions do not work as expected. For example, if you declare a function in a fashion so as to export it, you need to add __declspec(dllexport) to its declaration, and if you don't want name mangling, particularly important if you expect to use the DLL with straight C code as well as C++, you need to define it in the .cpp file as

extern "C" __declspec(dllexport) function-header
   {
    // ... whatever

   }

The problem with this approach is that the obvious solutions to the header file don't work.

The First Wrong Approach

The first attempt you might make is to declare, in the .h file

extern "C" function-prototype; // incorrect

This doesn't work because the compiler will complain that the prototype is incompatible with the declaration. What causes this is the prototype lacks the __declspec(dllexport) declaration. So, you say, I'll just add that in. So you get

extern "C" __declspec(dllexport) function-prototype; // incorrect

This doesn't work for a different reason. Although you will no longer get a warning when you compile the DLL, you will get a warning when you compile the application, because the declaration __declspec(dllexport) is incompatible with the use of the function call.

The Second Wrong Approach

At this point a couple workarounds present themselves. The first one you might consider is to use two header files, one of which has the __declspec(dllexport), and the other of which does not. This is a Bad Idea. The reason is that you lose the consistency checking you would get if you include the same header file into both the DLL compilation and the client compilation. For example, if you change the function to have a different parameter type, the compiler will complain unless you change the DLL's header file prototypes to correspond. But in this case, the DLL header file is completely useless, and might as well not exist, because there is a completely separate header file for the client. It remains uncorrected, and there is no cross-check against the actual module. You lose.

A workable but inconvenient approach

At this point, you could remove the __declspec(dllexport) declarations entirely. This means your one-and-only header file will be consistent with the source, but, whoops, the symbols are not exported. To get around this, you can add either the /exports:function command line switch to the linker command line, or use a .def file and add the function name to the EXPORTS section. This is a valid, correct solution, and it works, but you will find that it quickly becomes inconvenient, because you have to remember to add the function name declaration to the /exports switch or add the name to the .def file. Anyone who did DLLs or Windows programming in Win16 in the days before the __export keyword was added to that language will remember how bad this was. Those of you who did not, take our word for it, it was a real royal pain to deal with this. So I'm disinclined to use this solution unless there are other compelling reasons, which there rarely are.

The Ultimate Header File

This is a model which I have cut-and-pasted many times for every DLL I've built in recent years. I've added some comments to help explain and show visually what is going on, and you will probably want to remove these before actually using it.

The uniquename name is something of your own choice. It could be a simple text string, e.g., _DEFINED_MYDLL_HEADER, or you could use GUIDGEN to create a GUID. If you use GUIDGEN, create a "Registry Entry" format, which is 

{EBE7C480-A601-11d4-BC36-006067709674}

Remove the { }s  and replace the hyphens with underscores. This would give you a symbol like

_DEFINED_EBE7C480_A601_11d4_BC36_006067709674

which guarantees that you will never, ever have a conflict with any other header file.

#ifndef _DEFINED_uniqueheadername  //---------------1---------------+

#define _DEFINED_uniqueheadername  //---------------1---------------+

                                                                 // |

  #if _MSC_VER > 1000  //--------------2---------------+            |

    #pragma once                                    // |            |

  #endif //----------------------------2---------------+            |

                                                                 // |

  #ifdef __cplusplus  //---------------3---------------+            |

  extern "C" {                                      // |            |

  #endif // __cplusplus  //------------3---------------+            |

                                                                 // |

  #ifdef _COMPILING_uniqueheadername  //-----------4-----------+    |

    #define LIBSPEC __declspec(dllexport)                   // |    |

  #else                                                     // |    |

    #define LIBSPEC __declspec(dllimport)                   // |    |

  #endif // _COMPILING_uniqueheadername  //--------4-----------+    |

                                                            // |    |

  LIBSPEC linkagetype resulttype name(parameters);          // |    |

  // ... more declarations as needed                        // |    |

  #undef LIBSPEC   //------------------------------4-----------+    |

                                                                 // |

  #ifdef __cplusplus    //----------------5---------------+         |

  }                                                    // |         |

  #endif // __cplusplus  //---------------5---------------+         |

#endif // _DEFINED_uniqueheadername //-----------------1------------+

The explanation of the "contour lines" is as follows

  1. If the header file is actually processed, this is the traditional C idiom to keep it from being processed twice. The first time the file is included, the symbol _DEFINED_uniqueheadername is not defined, so the file is processed. The first thing it does is declare that symbol, so that in subsequent inclusions, the entire body of the file is skipped.
  2. This is a #pragma which is defined only for C compilers version 10.00 and later (note that the C compiler version and the VC++ version are not related numbers). If this #pragma is implemented, the inclusion of this file in a compilation creates an entry in an "included files table" for that compilation. Subsequent attempts to include this file in the same compilation first check this table, and if the filename is the same, the compiler doesn't even bother to open the file. However, you can't eliminate the contour 1 test, because this #pragma, for reasons best known only to its implementor, is case sensitive in the file name, even though the file name of the underlying operating system is case insensitive. It seems utterly silly that we should have two discrete behaviors, but since when has rationality and common sense affected what some programmers do?
  3. This contour is required to make the header file compatible with both C and C++. It assumes that you want C compatibility, and therefore that the function names should not have C++ "name mangling" applied. The downside of this is that you lose the ability to overload functions based on parameter types. If you are doing a C++-only DLL, you would not use this contour, and you would also eliminate contour 5. The __cplusplus symbol is defined for a C++ compilation but undefined for a C compilation.
  4. This is a funny contour. The #if/#else/#endif contour decides which form of __declspec to use for the declaration. The scope of the effect of this contour actually projects beyond the conditional and extends to the #undef, during which the symbol LIBSPEC is defined. Strictly speaking, you do not need to do the __declspec(dllimport); you could just define LIBSPEC as an empty macro. However, declaring __declspec(dllimport) does same one or two instructions on the linkage when it is finally resolved. Since, using this method, it costs nothing to add this slight efficiency, why not? Note that contour 4 is not needed for non-DLL files.
  5. This is the matching close brace to the structure created in contour 3. If you are doing a C++-only DLL, you would eliminate this as well as contour 3. 

Now, in the DLL itself, you have to do one thing: you must declare the _COMPILING_uniquename symbol before the #include. After that, you simply declare the function as shown.

#include "stdafx.h" // usually 

#define _COMPILING_uniquename
#include "myDLL.h"


extern "C" __declspec(dllexport) linkagetype resulttype name(parameters)
   {
     // ... whatever

   }

and you will not get any compiler conflicts. This will use the same header file for both the DLL and client, and all the Right Things will happen.


The views expressed in these essays are those of the author, and in no way represent, nor are they endorsed by, Microsoft.

Send mail to newcomer@flounder.com with questions or comments about this article.
Copyright © 1999 CompanyLongName All Rights Reserved
www.flounder.com/mvp_tips.htm

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Joseph M. Newcomer



Location: United States United States

Other popular DLLs & Assemblies articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 21 of 21 (Total in Forum: 21) (Refresh)FirstPrevNext
Questionhow to find the function prototype for any dllmemberinduvijay21:28 17 Apr '07  
AnswerRe: how to find the function prototype for any dllmemberJoseph M. Newcomer20:28 21 Apr '07  
GeneralRe: how to find the function prototype for any dllmvptoxcct5:12 14 Nov '08  
General_COMPILING_uniqueheadername, what for?memberHunt Chang19:12 10 Aug '06  
GeneralRe: _COMPILING_uniqueheadername, what for?memberJoseph M. Newcomer20:44 10 Aug '06  
GeneralRe: _COMPILING_uniqueheadername, what for?memberHunt Chang14:04 12 Aug '06  
Generalhow to choose between DLLs at runtimememberJesse Evans13:21 8 Nov '04  
GeneralRe: how to choose between DLLs at runtimememberJoseph M. Newcomer19:04 8 Nov '04  
GeneralRe: how to choose between DLLs at runtimememberJesse Evans7:35 9 Nov '04  
GeneralHello SirmemberThatsAlok23:54 26 Oct '04  
GeneralHow to extract DLL functions ?memberdefenestration15:30 4 May '04  
GeneralRe: How to extract DLL functions ?memberJoseph M. Newcomer5:58 5 May '04  
GeneralNo need for extern "C" declarationmemberTealc23:37 19 Aug '02  
GeneralRe: No need for extern "C" declarationmemberJoseph M. Newcomer7:26 25 Aug '02  
GeneralAlready existsmemberAnonymous6:36 2 Apr '01  
GeneralyepmemberJonathan de Halleux1:34 9 Oct '02  
GeneralYet Another ApproachmemberWaleri Todorov20:45 20 Nov '00  
GeneralAnother solutionmemberReece H. Dunn10:20 9 Nov '00  
GeneralGoing further: Function Prototypes/PointersmemberSerge Paccalin1:56 9 Nov '00  
GeneralMFC-Code for Win32-DLLmemberMartin Holzherr21:50 8 Nov '00  
GeneralNice!memberJonathan Gilligan12:05 8 Nov '00  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 7 Nov 2000
Editor: Chris Maunder
Copyright 2000 by Joseph M. Newcomer
Everything else Copyright © CodeProject, 1999-2008
Web13 | Advertise on the Code Project