blob: ca08663eda18e4a48053165aec7f47d67a8aa227 (
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-2018 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
|