wine/asm.h: Quote stdcall decored symbols.

LLVM can't handle @ char in non-quoted symbol names.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Jacek Caban 2019-08-25 18:50:08 +02:00 committed by Alexandre Julliard
parent 0f15515cc2
commit bdcc54c19d
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
#endif
#if defined(_WIN32) && defined(__i386__)
# define __ASM_STDCALL(name,args) __ASM_NAME(name) "@" #args
# define __ASM_STDCALL(name,args) "\"" __ASM_NAME(name) "@" #args "\""
#else
# define __ASM_STDCALL(name,args) __ASM_NAME(name)
#endif