aboutsummaryrefslogtreecommitdiff
path: root/mysql/mysql_version.h
blob: 2f64ee6644b7b5fa4d2a4c71e3e0c01f62c0bbe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * file      : mysql/mysql_version.h
 * copyright : Copyright (c) 2016-2017 Code Synthesis Ltd
 * license   : GPLv2 with FOSS License Exception; see accompanying COPYING file
 */

#include <mysql/version.h>

/*
 * Cancel the __stdcall calling convention for MinGW when compile for 32 bits
 * architecture (see libmariadb%mysql/ma_config.h for details).
 */
#if defined(__MINGW32__) && !defined(_WIN64)
#  undef  STDCALL
#  define STDCALL
#endif