blob: e4655cde5ffcc27568e2476e5065903336bbf5a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* file : mysql/mariadb_version.h
* license : LGPLv2.1; see accompanying COPYING file
*/
#include <mysql/version.h>
/*
* Cancel the API functions __stdcall calling convention for MinGW when
* building 32 bits targets (see mysql/ma_config.h for details).
*/
#if defined(__MINGW32__) && !defined(_WIN64)
# undef STDCALL
# define STDCALL
#endif
|