00001 /****************************************************** 00002 Data dictionary global types 00003 00004 (c) 1996 Innobase Oy 00005 00006 Created 1/8/1996 Heikki Tuuri 00007 *******************************************************/ 00008 00009 #ifndef dict0types_h 00010 #define dict0types_h 00011 00012 typedef struct dict_sys_struct dict_sys_t; 00013 typedef struct dict_col_struct dict_col_t; 00014 typedef struct dict_field_struct dict_field_t; 00015 typedef struct dict_index_struct dict_index_t; 00016 typedef struct dict_tree_struct dict_tree_t; 00017 typedef struct dict_table_struct dict_table_t; 00018 typedef struct dict_foreign_struct dict_foreign_t; 00019 00020 /* A cluster object is a table object with the type field set to 00021 DICT_CLUSTERED */ 00022 00023 typedef dict_table_t dict_cluster_t; 00024 00025 typedef struct ind_node_struct ind_node_t; 00026 typedef struct tab_node_struct tab_node_t; 00027 00028 #endif
1.4.7

