Commit 3a67291a authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

include: Use dllimport attribute for string.h functions.

parent 3dcedeef
......@@ -137,6 +137,18 @@
# endif
#endif
#ifndef _ACRTIMP
# ifdef _CRTIMP
# define _ACRTIMP _CRTIMP
# elif defined(_MSC_VER)
# define _ACRTIMP __declspec(dllimport)
# elif defined(__MINGW32__) || defined(__CYGWIN__)
# define _ACRTIMP __attribute__((dllimport))
# else
# define _ACRTIMP
# endif
#endif
#define _ARGMAX 100
#ifndef _MSVCRT_LONG_DEFINED
......
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