brintos

brintos / llvm-project-archived public Read only

0
0
Text · 818 B · 1b5c817 Raw
18 lines · plain
1not DIALOGEX // not as an identifier20,33 | not 1, // = 2461 + not 1, // = 605not 1 | 3,  // = 367 | (not 1 + not 2) // = 47STYLE   0xff00ff03 & ~(not (1|2)) // = 0xff00ff038EXSTYLE 0xff00ff03 | ~(not (1|2)) | not 8 // = 0xfffffff79{10    GROUPBOX "", 0,11        not 1, // = 012        15 + (((not 1 | not 2 | not 4) | 2)), // = 1013        0, 0, 0x34 - (not 1) + (not 0x14) // expression evaluates to 0x20 with not mask 0x15, which clears 0x5 bits of default14                                          // groupbox class style 0x50000007, resulting with style 0x5000002215    GROUPBOX "", 1, 0,0,0,0,(not 7) | 1   // expression evaluates to 1 with not mask 0x7, which clears 0x7 bits of groupbox default16                                          // class style 0x50000007, but sets bit 1, resulting with style 0x5000000117}18