blob: 4fa84071c8a8dbb2cf8e612e857c420a219126f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#if !defined(__WINDOWS_CCONV_H)
#define __WINDOWS_CCONV_H
#if defined(i386_HOST_ARCH)
# define WINDOWS_CCONV stdcall
#elif defined(x86_64_HOST_ARCH)
# define WINDOWS_CCONV ccall
#else
# error Unknown mingw32 arch
#endif
#endif
|