2005-10-27 07:29:40 +00:00
|
|
|
/******************************************************
|
|
|
|
Index page routines
|
|
|
|
|
|
|
|
(c) 1994-1996 Innobase Oy
|
|
|
|
|
|
|
|
Created 2/2/1994 Heikki Tuuri
|
|
|
|
*******************************************************/
|
|
|
|
|
|
|
|
#ifndef page0types_h
|
|
|
|
#define page0types_h
|
|
|
|
|
|
|
|
#include "univ.i"
|
|
|
|
|
|
|
|
/* Type of the index page */
|
|
|
|
/* The following define eliminates a name collision on HP-UX */
|
2006-02-21 12:37:54 +00:00
|
|
|
#define page_t ib_page_t
|
2005-10-27 07:29:40 +00:00
|
|
|
typedef byte page_t;
|
|
|
|
typedef struct page_search_struct page_search_t;
|
|
|
|
typedef struct page_cur_struct page_cur_t;
|
|
|
|
|
|
|
|
|
2006-02-21 12:37:54 +00:00
|
|
|
#endif
|