Commit dc4bad6d authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

include: Don't use dllexport attribute for Wine PE modules.

parent bbdec47b
......@@ -180,7 +180,10 @@ extern "C" {
/* a couple of useful Wine extensions */
#ifdef _MSC_VER
#if defined(__WINESRC__) && !defined(WINE_UNIX_LIB)
/* Wine uses .spec file for PE exports */
# define DECLSPEC_EXPORT
#elif defined(_MSC_VER)
# define DECLSPEC_EXPORT __declspec(dllexport)
#elif defined(__MINGW32__)
# define DECLSPEC_EXPORT __attribute__((dllexport))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment