Changes by: flatcap
Update of /cvsroot/linux-ntfs/ntfsprogs/include/ntfs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29934/include/ntfs
Modified Files:
rich.h
Log Message:
remove some colour hacks
remove a few #ifdef DEBUGs and RM_WRITEs
throw in lots of extra traces
Index: rich.h
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/include/ntfs/rich.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- rich.h 21 Oct 2005 18:05:13 -0000 1.2
+++ rich.h 28 Oct 2005 04:32:21 -0000 1.3
@@ -26,16 +26,6 @@
#include "attrib.h"
#include "bitmap.h"
-// XXX Temporarily copied from utils.h
-#define RED "\e[31m"
-#define GREEN "\e[32m"
-#define YELLOW "\e[33m"
-#define BLUE "\e[34m"
-#define MAGENTA "\e[35m"
-#define CYAN "\e[36m"
-#define BOLD "\e[01m"
-#define END "\e[0m"
-
#define ROUND_UP(num,bound) (((num)+((bound)-1)) & ~((bound)-1))
#define ROUND_DOWN(num,bound) ((num) & ~((bound)-1))
#define ATTR_SIZE(s) ROUND_UP(s,8)
|