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.
|
|
|
|
|
|
|
__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. __declspec(dllimport) imports the implementation from a dll so your application can make use it I'm only a novice c/c++ developer so perhaps someone's got a better explanation than I |
||
|
|
|
|
Two different use cases: 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. 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. 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. |
||
|
|
|
|
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. 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. |
||
|
|
|
|
|
|||
|
|
