00001 #ifndef _WINC_FILEATTR 00002 #define _WINC_FILEATTR 00003 00004 namespace WXP { 00010 struct FileAttr { 00011 static const int READ = 0; 00012 static const int WRITE = 1; 00013 static const int APPEND = 2; 00014 }; 00015 } 00016 #endif