Bug 206934: use __declspec instead of _declspec. __declspec is the

documented form and the only form accepted by the MinGW compiler.  The
patch is contributed by Christopher Seawood <seawood@netscape.com>.  r=wtc.
This commit is contained in:
wtc%netscape.com 2003-05-28 00:07:36 +00:00
Родитель d7eb3427b4
Коммит f6dae5fad2
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -33,7 +33,7 @@
#include "seccomon.h"
#if defined( _WIN32 ) || defined( __WIN32__ )
#define RETURN_TYPE extern _declspec( dllexport ) int _cdecl
#define RETURN_TYPE extern __declspec( dllexport ) int _cdecl
#endif /* Windows */
#include "maci.h"