* Clears the given bits in input flags. * * @param bits The bits to clear. * @return The new value of input flags. */
| 226 | * @return The new value of input flags. |
| 227 | */ |
| 228 | uint16 Input_Flags_ClearBits(uint16 bits) |
| 229 | { |
| 230 | g_inputFlags &= ~bits; |
| 231 | return g_inputFlags; |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * Sets the given bits in input flags. |
no outgoing calls
no test coverage detected