1 #ifndef MYSYS_MY_STATIC_INCLUDED
2 #define MYSYS_MY_STATIC_INCLUDED
3 
4 /* Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
5 
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License, version 2.0,
8    as published by the Free Software Foundation.
9 
10    This program is also distributed with certain software (including
11    but not limited to OpenSSL) that is licensed under separate terms,
12    as designated in a particular file or component or in included license
13    documentation.  The authors of MySQL hereby grant you an additional
14    permission to link the program and your derivative works with the
15    separately licensed software that they have included with MySQL.
16 
17    Without limiting anything contained in the foregoing, this file,
18    which is part of C Driver for MySQL (Connector/C), is also subject to the
19    Universal FOSS Exception, version 1.0, a copy of which can be found at
20    http://oss.oracle.com/licenses/universal-foss-exception.
21 
22    This program is distributed in the hope that it will be useful,
23    but WITHOUT ANY WARRANTY; without even the implied warranty of
24    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25    GNU General Public License, version 2.0, for more details.
26 
27    You should have received a copy of the GNU General Public License
28    along with this program; if not, write to the Free Software
29    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA */
30 
31 /*
32   Static variables for mysys library. All definied here for easy making of
33   a shared library
34 */
35 
36 #include "my_global.h"
37 #include "my_sys.h"
38 
39 C_MODE_START
40 extern char curr_dir[FN_REFLEN], home_dir_buff[FN_REFLEN];
41 
42 extern const char *soundex_map;
43 
44 extern USED_MEM* my_once_root_block;
45 extern uint	 my_once_extra;
46 
47 extern struct st_my_file_info my_file_info_default[MY_NFILE];
48 
49 extern ulonglong query_performance_frequency, query_performance_offset;
50 
51 C_MODE_END
52 
53 #endif /* MYSYS_MY_STATIC_INCLUDED */
54