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
|
|
|
|
|
2017-03-06 19:37:48 +01:00
|
|
|
#include <mysql/service_base64.h>
|
2012-03-28 19:26:00 +02:00
|
|
|
#include <mysql/service_debug_sync.h>
|
2017-03-06 19:37:48 +01:00
|
|
|
#include <mysql/service_encryption.h>
|
|
|
|
#include <mysql/service_encryption_scheme.h>
|
2013-01-18 19:04:23 +01:00
|
|
|
#include <mysql/service_kill_statement.h>
|
2013-09-09 13:56:35 +02:00
|
|
|
#include <mysql/service_logger.h>
|
2017-03-06 19:37:48 +01:00
|
|
|
#include <mysql/service_md5.h>
|
2017-04-18 18:37:57 +02:00
|
|
|
#include <mysql/service_my_crypt.h>
|
|
|
|
#include <mysql/service_my_print_error.h>
|
2017-03-06 19:37:48 +01:00
|
|
|
#include <mysql/service_my_snprintf.h>
|
|
|
|
#include <mysql/service_progress_report.h>
|
|
|
|
#include <mysql/service_sha1.h>
|
|
|
|
#include <mysql/service_sha2.h>
|
|
|
|
#include <mysql/service_thd_alloc.h>
|
2013-12-12 16:18:49 +01:00
|
|
|
#include <mysql/service_thd_autoinc.h>
|
|
|
|
#include <mysql/service_thd_error_context.h>
|
2017-03-06 19:37:48 +01:00
|
|
|
#include <mysql/service_thd_rnd.h>
|
2014-12-03 23:51:47 +01:00
|
|
|
#include <mysql/service_thd_specifics.h>
|
2017-03-06 19:37:48 +01:00
|
|
|
#include <mysql/service_thd_timezone.h>
|
|
|
|
#include <mysql/service_thd_wait.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
|
|
|
|
|