Ejemplo n.º 1
0
		public static bool checkFlags(FileHeaderFlag flagsID, ref uint flags)
		{
			return (flags & (uint)flagsID) > 0;
		}
Ejemplo n.º 2
0
		public static void clearFlags(FileHeaderFlag flagsID, ref uint flags)
		{
			flags &= ~(uint)flagsID;
		}
Ejemplo n.º 3
0
		public static void setFlags(FileHeaderFlag flagsID, ref uint flags)
		{
			flags |= (uint)flagsID;
		}
Ejemplo n.º 4
0
 public static bool checkFlags(FileHeaderFlag flagsID, ref uint flags)
 {
     return((flags & (uint)flagsID) > 0);
 }
Ejemplo n.º 5
0
 public static void clearFlags(FileHeaderFlag flagsID, ref uint flags)
 {
     flags &= ~(uint)flagsID;
 }
Ejemplo n.º 6
0
 public static void setFlags(FileHeaderFlag flagsID, ref uint flags)
 {
     flags |= (uint)flagsID;
 }