Clone of PhatAC @ https://github.com/floaterxk/PhatAC

mysql_embed.h 1.1KB

123456789101112131415161718192021222324252627282930
  1. #ifndef MYSQL_EMBED_INCLUDED
  2. #define MYSQL_EMBED_INCLUDED
  3. /* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; version 2 of the License.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
  14. /* Defines that are unique to the embedded version of MySQL */
  15. #ifdef EMBEDDED_LIBRARY
  16. /* Things we don't need in the embedded version of MySQL */
  17. /* TODO HF add #undef HAVE_VIO if we don't want client in embedded library */
  18. #undef HAVE_DLOPEN /* No udf functions */
  19. #endif /* EMBEDDED_LIBRARY */
  20. #endif /* MYSQL_EMBED_INCLUDED */