Sorry,
I'm a beginner, I found the answer myself:
In the help there is written:
"mask designates the buffer to flush. Combine the buffer masks by bit to flush more than one buffer simultaneously. Use logical OR, also known as OR-ing or adding, to combine the values."
mask 64 or 0x40(hex)
Flushes and discards contents of the receive buffer.
mask 128 or 0x80(hex)
No I/O to the device.
So, if you want to combine both just add the values:
128 + 64 = 192
or
0x40(hex) + 0x40(hex) = 0xC0
Regards, Stefan