Top "Declspec" questions

what does __declspec(dllimport) really mean?

I saw the Qt source code like this: class Q_CORE_EXPORT QBasicAtomicInt { public: ... }; Which Q_CORE_EXPORT macro defines …

c++ qt visual-c++ dll declspec
Proper way to link static libraries with dll

My project builds through few static libraries which should linked to main dll library gain one single dll as a …

c++ visual-c++ dll visual-studio-2013 declspec
How does `__declspec(align(#))` work?

Yes, I have read this: http://msdn.microsoft.com/en-us/library/83ythb65.aspx But it's not clear to me. First …

c++ visual-studio-2010 alignment sizeof declspec
Why/when is __declspec( dllimport ) not needed?

In a project using a server.dll and a client.exe, I have dllexported a server symbol from the server …

c++ dllimport visual-c++-2005 declspec