summaryrefslogtreecommitdiff
path: root/storage/innobase/include/buf0types.h
diff options
context:
space:
mode:
Diffstat (limited to 'storage/innobase/include/buf0types.h')
-rw-r--r--storage/innobase/include/buf0types.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/storage/innobase/include/buf0types.h b/storage/innobase/include/buf0types.h
new file mode 100644
index 00000000000..44fdfa80e73
--- /dev/null
+++ b/storage/innobase/include/buf0types.h
@@ -0,0 +1,20 @@
+/******************************************************
+The database buffer pool global types for the directory
+
+(c) 1995 Innobase Oy
+
+Created 11/17/1995 Heikki Tuuri
+*******************************************************/
+
+#ifndef buf0types_h
+#define buf0types_h
+
+typedef struct buf_block_struct buf_block_t;
+typedef struct buf_pool_struct buf_pool_t;
+
+/* The 'type' used of a buffer frame */
+typedef byte buf_frame_t;
+
+
+#endif
+