include: Avoid cpp_quote() for function prototypes.

This commit is contained in:
Józef Kucia
2017-09-18 15:40:42 +02:00
parent 67641a8999
commit dfab65e568
2 changed files with 16 additions and 16 deletions

View File

@@ -138,13 +138,14 @@ typedef struct SECURITY_ATTRIBUTES SECURITY_ATTRIBUTES;
((type *)((char *)(address) - offsetof(type, field)))
# ifdef __x86_64__
# define WINAPI __attribute__((ms_abi))
# define STDMETHODCALLTYPE __attribute__((ms_abi))
# define __stdcall __attribute__((ms_abi))
# else
# define WINAPI __attribute__((__stdcall__))
# define STDMETHODCALLTYPE __attribute__((__stdcall__))
# define __stdcall __attribute__((__stdcall__))
# endif
# define WINAPI __stdcall
# define STDMETHODCALLTYPE __stdcall
# ifdef __GNUC__
# define DECLSPEC_SELECTANY __attribute__((weak))
# endif