Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
183 B

4 years ago
  1. // Defines.h
  2. #ifndef __DEFINES_H__
  3. #define __DEFINES_H__
  4. #define IDWORD_OF_IBIT(iBit) ((iBit) >> 5 )
  5. #define IBIT_RESIDUE(iBit) ((iBit) & 0x1F)
  6. #endif // __DEFINES_H__