What is the difference between dllexport and dllimport? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T15:58:22Z http://stackoverflow.com/feeds/question/57999 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/57999/what-is-the-difference-between-dllexport-and-dllimport 2 What is the difference between dllexport and dllimport? 1800 INFORMATION 2008-09-12T00:23:23Z 2008-10-24T16:20:17Z <p>I'm just looking for a simple, concise explanation of the difference between these two. MSDN doesn't go into a hell of a lot of detail here.</p> http://stackoverflow.com/questions/57999/what-is-the-difference-between-dllexport-and-dllimport/58026#58026 4 Answer by rpetrich for What is the difference between dllexport and dllimport? rpetrich 2008-09-12T00:41:42Z 2008-09-12T00:41:42Z <p>__declspec(dllexport) tells the linker that you want this object to be made available for other dll's to import. It is used when creating a dll that others can link to.</p> <p>__declspec(dllimport) imports the implementation from a dll so your application can make use it</p> <p>I'm only a novice c/c++ developer so perhaps someone's got a better explanation than I</p> http://stackoverflow.com/questions/57999/what-is-the-difference-between-dllexport-and-dllimport/58029#58029 1 Answer by morechilli for What is the difference between dllexport and dllimport? morechilli 2008-09-12T00:43:32Z 2008-09-12T00:43:32Z <p>Two different use cases:</p> <p>1) You are defining a class implementation within a dll. You want another program to use the class. Here you use dllexport as you are creating a class that you wish the dll to expose.</p> <p>2) You are using a function provided by a dll. You include a header supplied with the dll. Here the header uses dllimport to bring in the implementation to be used by the current program.</p> <p>Often the same header file is used in both cases and a macro defined. The build configuration defines the macro to be import or export depending which it needs.</p> http://stackoverflow.com/questions/57999/what-is-the-difference-between-dllexport-and-dllimport/58030#58030 2 Answer by Antoine Aubry for What is the difference between dllexport and dllimport? Antoine Aubry 2008-09-12T00:43:34Z 2008-09-12T00:43:34Z <p>Dllexport is used to mark a function as exported. You implement the function in your DLL and export it so it becomes available to anyone using your DLL.</p> <p>Dllimport is the opposite: it marks a function as being imported from a DLL. In this case you only declare the function's signature and link your code with the library.</p> http://stackoverflow.com/questions/57999/what-is-the-difference-between-dllexport-and-dllimport/58031#58031 7 Answer by Shog9 for What is the difference between dllexport and dllimport? Shog9 2008-09-12T00:43:53Z 2008-09-12T01:05:37Z <p><code>__declspec( dllexport )</code> - The class or function so tagged will be exported from the DLL it is built in. If you're building a DLL and you want an API, you'll need to use this or a separate .DEF file that defines the exports (<a href="http://msdn.microsoft.com/en-us/library/3y1sfaz2.aspx" rel="nofollow">MSDN</a>). This is handy because it keeps the definition in one place, but the .DEF file provides more options.</p> <p><code>__declspec( dllimport )</code> - The class or function so tagged will be imported from a DLL. This is not actually required - you need an import library <em>anyway</em> to make the linker happy. But when properly marked with <code>dllimport</code>, the compiler and linker have enough information to optimize the call; without it, you get normal static linking to a stub function in the import library, which adds unnecessary indirection. <a href="http://blogs.msdn.com/oldnewthing/archive/2006/07/26/679044.aspx" rel="nofollow">ONT1</a> <a href="http://blogs.msdn.com/oldnewthing/archive/2004/01/08/48616.aspx#48757" rel="nofollow">ONT2</a></p>