~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to storage/innobase/include/page0types.h

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************
 
2
Index page routines
 
3
 
 
4
(c) 1994-1996 Innobase Oy
 
5
 
 
6
Created 2/2/1994 Heikki Tuuri
 
7
*******************************************************/
 
8
 
 
9
#ifndef page0types_h
 
10
#define page0types_h
 
11
 
 
12
#include "univ.i"
 
13
 
 
14
/* Type of the index page */
 
15
/* The following define eliminates a name collision on HP-UX */
 
16
#define page_t     ib_page_t
 
17
typedef byte            page_t;
 
18
typedef struct page_search_struct       page_search_t;
 
19
typedef struct page_cur_struct  page_cur_t;
 
20
 
 
21
 
 
22
#endif