Bug 895083 - Don't #define NS_HAVE_STDCALL on Win64 because __stdcall will just get ignored there by the compiler. r=vlad

This commit is contained in:
Ehsan Akhgari 2013-07-18 10:17:13 -04:00
Родитель 73021dd7d8
Коммит 67b7df59f8
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -133,7 +133,10 @@
#define NS_METHOD_(type) type __stdcall
#define NS_CALLBACK_(_type, _name) _type (__stdcall * _name)
#define NS_STDCALL __stdcall
#ifndef _WIN64
// Win64 has only one calling convention. __stdcall will be ignored by the compiler.
#define NS_HAVE_STDCALL
#endif
#define NS_FROZENCALL __cdecl
/*