Exporting classes in dll
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Does someone know how to export/import classes in dll? I wonder if it is possible as in .NET
Yes it is possible with the use of Microsoft-specific storage-class specifiers
__declspec(dllimport)
and__declspec(dllexport)
, much as it is done for regular functions. Joaquín M López Muñoz Telefónica, Investigación y Desarrollo