mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
19 lines
339 B
C
19 lines
339 B
C
#include <mysql.h>
|
|
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
printf("{ "
|
|
"\"version\": \"%d.%d.%d\", "
|
|
"\"flavor\": \"%s\""
|
|
" }",
|
|
MYSQL_VERSION_ID / 10000, (MYSQL_VERSION_ID / 100) % 100, MYSQL_VERSION_ID % 100,
|
|
#ifdef MARIADB_VERSION_ID
|
|
"MariaDB"
|
|
#else
|
|
"MySQL"
|
|
#endif
|
|
);
|
|
return 0;
|
|
}
|