services.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #ifndef MYSQL_SERVICES_INCLUDED
  2. /* Copyright (c) 2009, 2016, Oracle and/or its affiliates. All rights reserved.
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License, version 2.0,
  5. as published by the Free Software Foundation.
  6. This program is also distributed with certain software (including
  7. but not limited to OpenSSL) that is licensed under separate terms,
  8. as designated in a particular file or component or in included license
  9. documentation. The authors of MySQL hereby grant you an additional
  10. permission to link the program and your derivative works with the
  11. separately licensed software that they have included with MySQL.
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License, version 2.0, for more details.
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
  19. /*
  20. Out of extern because of inclusion of files which include my_compiler.h
  21. which in turn complains about C-linkage of templates.
  22. service_srv_session.h and service_command.h use proper extern "C" for
  23. their exported symbols.
  24. */
  25. #ifndef EMBEDDED_LIBRARY
  26. #include <mysql/service_srv_session.h>
  27. #include <mysql/service_srv_session_info.h>
  28. #include <mysql/service_command.h>
  29. #endif
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif
  33. #include <mysql/service_my_snprintf.h>
  34. #include <mysql/service_thd_alloc.h>
  35. #include <mysql/service_thd_wait.h>
  36. #include <mysql/service_thread_scheduler.h>
  37. #include <mysql/service_my_plugin_log.h>
  38. #include <mysql/service_mysql_string.h>
  39. #include <mysql/service_mysql_alloc.h>
  40. #include <mysql/service_mysql_password_policy.h>
  41. #include <mysql/service_parser.h>
  42. #include <mysql/service_rpl_transaction_ctx.h>
  43. #include <mysql/service_rpl_transaction_write_set.h>
  44. #include <mysql/service_security_context.h>
  45. #include <mysql/service_locking.h>
  46. #include <mysql/service_mysql_keyring.h>
  47. #ifdef __cplusplus
  48. }
  49. #endif
  50. #ifdef __cplusplus
  51. #include <mysql/service_rules_table.h>
  52. #endif
  53. #define MYSQL_SERVICES_INCLUDED
  54. #endif /* MYSQL_SERVICES_INCLUDED */