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.

9 lines
366 B

4 years ago
  1. // Opcode descriptor structure
  2. typedef struct OPD {
  3. unsigned short mask; // AND mask
  4. unsigned short match; // Bits to compare in the mask
  5. void (*pfn)(IASM *, unsigned short, unsigned short);
  6. // Pointer to the builder function
  7. unsigned short arg; // Argument to the builder function
  8. } OPD;