DWORD modify_dword(DWORD style, DWORD add, DWORD del) { style &= ~del; // 删除一位 style |= add; return style; }