ReverseBitsInDWORD (FUN)¶
FUNCTION ReverseBitsInDWORD : DWORD
Function returns the DWORD “dwInput” with a reversed bit-order.
Example:
dwInput = 16#01020304 = 2#00000001 00000010 00000011 00000100
->
MEM.ReverseBitsInDWORD(dwInput) = 16#20C04080 = 2#00100000 11000000 01000000 10000000
- InOut:
- Scope - Name - Type - Comment - Return - ReverseBitsInDWORD- DWORD- function returns a DWORD with reveresed bit-order of “dwInput” - Input - dwInput- DWORD- DWORD to reverse 
