aboutsummaryrefslogtreecommitdiff
path: root/mysql/mariadb_version.h
blob: 9a1c06488a92a039dcd656b4db0593eeba3396c8 (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-2019 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