开发者

Can C++ export class from DLL

I would like to know if the export of class ( __declspec(dllexport) in VC++ ) is a kind of standard ( ANSI , ISO , ... )

I would like to know if someone has already try to do the same with intel c++ compiler and gcc ( mingw on windows ) and if it is possible to mix dlls generated from different compilers ( I really doubt that it is p开发者_StackOverflow社区ossible )

Thx


No, __declspec is VC++ specific.

One of the reasons that VC++ needs that is by default, DLLs do not expose symbols outside the DLL unless explicitly requested to do that. On Posix, shared objects expose all their (not-static) symbols unless explicitly told to hide them.

Update

Based on your comment that you want to make your code portable, you want to use the preprocessor and do something like this:

#ifdef WIN32
  #ifdef EXPORT_CLASS_FOO
    #define CLASS_FOO __declspec(dllexport)
  #else
    #define CLASS_FOO __declspec(dllimport) 
  #endif
#else
  #define CLASS_FOO
#endif

class CLASS_FOO foo
{ ... };

In the project implementing the class, make sure to add EXPORT_CLASS_FOO as a preprocessor definition (found in Project | NAME Properties.. under C/C++ | Preprocessor | Preprocess Definitions). This way, you'll export them when building the DLL, import them when you are using the DLL and do nothing special under Unix.


It is now possible to export only certain symbols [ Classes / API ] from a DLL [on Windows] or a SO [on *nix] using the GCC compiler/linker stack. For a fairly good overview of how to do this, refer to http://gcc.gnu.org/wiki/Visibility.


Anything that starts with __ in C++ is a vendor-specific extension. I don't know if any other compiler vendors support this, but it most certainly is not compatible cross-compiler.


The notion of DLL is very platform-specific. It is not covered by any even remotely universally applicable standard. If fact, the acronym DLL itself is usually reserved for Windows dynamic libraries. Needless to add, anything specific to DLL support in C/C++ is very platform/vendor dependent.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜