Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/include
In directory usw-pr-cvs1:/tmp/cvs-serv2426
Modified Files:
Makefile.am
Added Files:
support.h
Log Message:
Forgot to add the new support.h
--- NEW FILE ---
/*
* support.h - Useful definitions and macros. Part of the Linux-NTFS project.
*
* Copyright (c) 2000,2001 Anton Altaparmakov.
*
* This program/include file is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program/include file is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program (in the main directory of the Linux-NTFS
* distribution in the file COPYING); if not, write to the Free Software
* Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef SUPPORT_H
#define SUPPORT_H
/*
* These are just to make the code more readable...
*/
typedef enum {
FALSE = 0,
NO = 0,
ZERO = 0,
TRUE = 1,
YES = 1,
ONE = 1,
} BOOL;
#endif /* defined SUPPORT_H */
Index: Makefile.am
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Makefile.am 2001/02/03 02:03:35 1.2
--- Makefile.am 2001/03/26 03:42:13 1.3
***************
*** 10,13 ****
mft.h \
ntfs_rec.h \
! volume.h
--- 10,15 ----
mft.h \
ntfs_rec.h \
! volume.h \
! unistr.h \
! support.h
|