6 Dec
2010
6 Dec
'10
6:39 p.m.
Mike Gibson <mike.gibson(a)storagecraft.com> writes:
+/****************************************************************************** + * _allshr (NTDLL.@) + * + * Right arithmetic shift a 64 bit integer + * + * PARAMS + * a [I] Initial number. + * count [I] Number of bits to shift by. + * + * RETURNS + * The value of a following the shift. + */ +LONGLONG WINAPI _allshr( LONGLONG a, INT count ) +{ + return a >> count; +}
There's no guarantee that this would be an arithmetic shift, it's compiler-dependent. -- Alexandre Julliard julliard(a)winehq.org