2009-11-02 21:05:42 +01:00
|
|
|
#ifndef MYSQL_SERVICES_INCLUDED
|
2013-04-07 14:50:01 +02:00
|
|
|
/* Copyright (c) 2009, 2010, Oracle and/or its affiliates.
|
2017-03-06 13:06:03 +01:00
|
|
|
Copyright (c) 2012, 2017, MariaDB
|
2009-11-02 21:05:42 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2011-06-30 17:46:53 +02:00
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
2009-11-02 21:05:42 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <mysql/service_my_snprintf.h>
|
|
|
|
#include <mysql/service_thd_alloc.h>
|
2010-06-07 16:01:39 +02:00
|
|
|
#include <mysql/service_thd_wait.h>
|
2011-07-01 14:08:30 +02:00
|
|
|
#include <mysql/service_progress_report.h>
|
2012-03-28 19:26:00 +02:00
|
|
|
#include <mysql/service_debug_sync.h>
|
2013-01-18 19:04:23 +01:00
|
|
|
#include <mysql/service_kill_statement.h>
|
2013-05-24 17:09:59 +02:00
|
|
|
#include <mysql/service_thd_timezone.h>
|
2017-03-06 13:06:03 +01:00
|
|
|
#include <mysql/service_sha2.h>
|
2013-07-13 17:48:06 +02:00
|
|
|
#include <mysql/service_sha1.h>
|
2014-09-26 20:03:20 +02:00
|
|
|
#include <mysql/service_md5.h>
|
2017-03-06 17:05:03 +01:00
|
|
|
#include <mysql/service_base64.h>
|
2013-09-09 13:56:35 +02:00
|
|
|
#include <mysql/service_logger.h>
|
2013-12-12 16:18:49 +01:00
|
|
|
#include <mysql/service_thd_autoinc.h>
|
2017-03-06 19:34:22 +01:00
|
|
|
#include <mysql/service_thd_rnd.h>
|
2013-12-12 16:18:49 +01:00
|
|
|
#include <mysql/service_thd_error_context.h>
|
2014-12-03 23:51:47 +01:00
|
|
|
#include <mysql/service_thd_specifics.h>
|
2015-04-01 21:25:02 +02:00
|
|
|
#include <mysql/service_encryption.h>
|
2015-05-13 21:57:24 +02:00
|
|
|
#include <mysql/service_encryption_scheme.h>
|
2014-09-27 22:29:10 +02:00
|
|
|
/*#include <mysql/service_wsrep.h>*/
|
2009-11-02 21:05:42 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define MYSQL_SERVICES_INCLUDED
|
|
|
|
#endif
|
|
|
|
|