Quote Originally Posted by cboles View Post
Thanks for the replies. Like I mentioned before, if I remove the VERSION parameter, the problem goes away, but I lose the version number which can be seen in the file properties. This numbering is not part of any WinAPI - it's just static metadata in the file.
Bla bla bla

Add this to any of your implementation files:
Qt Code:
  1. EXPORT_SIGNATURE(1,0,0,0)
To copy to clipboard, switch view to plain text mode 

where:
Qt Code:
  1. #define EXPORT_SIGNATURE(a,b,c,d) \
  2. int __getSignature__() \
  3. {\
  4. return (a << 24 | b << 16 | c << 8 | d);\
  5. }
To copy to clipboard, switch view to plain text mode