blob: 71a5d1d36f0ededcab997bb1937ff45163ed8b84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* file : mysql/mariadb_version.h
* copyright : Copyright (c) 2009-2017 Code Synthesis Tools CC
* 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
|