หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
warning C28129: An assignment has been made to an operand, which should only be modified using bit sets and clears
The driver is using an assignment to modify an operand. Assigning a value might unintentionally change the values of bits other than those that it needs to change, resulting in unexpected consequences.
Example
The following code example elicits this warning.
fdo->Flags = DO_BUFFERED_IO;
The following code example avoids this warning.
fdo->Flags |= DO_BUFFERED_IO;