00001 /* 00002 mysqlfs - MySQL Filesystem 00003 Copyright (C) 2006 Tsukasa Hamano <code@cuspy.org> 00004 $Id: mysqlfs.h 55 2009-07-12 22:23:33Z chickenandporn $ 00005 00006 This program can be distributed under the terms of the GNU GPL. 00007 See the file COPYING. 00008 */ 00009 00013 #define PATH_MAX 1024 00014 00016 #define DATA_BLOCK_SIZE 4096 00017 00019 #define MIN(a,b) ((a) < (b) ? (a) : (b)) 00020 00021 #define MAX(a,b) ((a) > (b) ? (a) : (b))
1.4.7