Using DWORD flags

Started by
1 comment, last by Mulligan 22 years, 2 months ago
I''ve seen a lot of functions that work like this function( FLAG1 | FLAG2 | FLAG3 ); int function( DWORD flags ) { //blah } How do you check the DWORD for certain flags?
Advertisement
Like this:
  DWORD a;a = FLAG1 | FLAG2;if (a & FLAG1){ //It has FLAG1 in it}if (a & FLAG2){ //It has FLAG2 in it}  

Hope this helps

---------------

I finally got it all together...
...and then forgot where I put it.
muchas gracias
-Dan

This topic is closed to new replies.

Advertisement