Drizzled Public API Documentation

pars0types.h
Go to the documentation of this file.
1 /*****************************************************************************
2 
3 Copyright (C) 1998, 2009, Innobase Oy. All Rights Reserved.
4 
5 This program is free software; you can redistribute it and/or modify it under
6 the terms of the GNU General Public License as published by the Free Software
7 Foundation; version 2 of the License.
8 
9 This program is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12 
13 You should have received a copy of the GNU General Public License along with
14 this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
15 St, Fifth Floor, Boston, MA 02110-1301 USA
16 
17 *****************************************************************************/
18 
19 /**************************************************/
26 #pragma once
27 #ifndef pars0types_h
28 #define pars0types_h
29 
30 typedef struct pars_info_struct pars_info_t;
34 typedef struct sym_node_struct sym_node_t;
35 typedef struct sym_tab_struct sym_tab_t;
37 typedef struct func_node_struct func_node_t;
38 typedef struct order_node_struct order_node_t;
39 typedef struct proc_node_struct proc_node_t;
40 typedef struct elsif_node_struct elsif_node_t;
41 typedef struct if_node_struct if_node_t;
42 typedef struct while_node_struct while_node_t;
43 typedef struct for_node_struct for_node_t;
44 typedef struct exit_node_struct exit_node_t;
45 typedef struct return_node_struct return_node_t;
46 typedef struct assign_node_struct assign_node_t;
48 
49 typedef UT_LIST_BASE_NODE_T(sym_node_t) sym_node_list_t;
50 
51 #endif
typedef UT_LIST_BASE_NODE_T(mutex_t) ut_list_base_node_t