* fhandler_tape.cc (get_ll): This is a generally useful function so move it
* winsup.h (get_ll): to here * security.cc (get_token_group_sidlist): Use get_ll to figure out the long long version of the luid since QuadPart is not part of the standard Windows API.
This commit is contained in:
@ -36,9 +36,6 @@ details. */
|
||||
part (partition)->initialize (0); \
|
||||
}
|
||||
|
||||
/* Convert LARGE_INTEGER into long long */
|
||||
#define get_ll(pl) (((long long) (pl).HighPart << 32) | (pl).LowPart)
|
||||
|
||||
#define IS_BOT(err) ((err) == ERROR_BEGINNING_OF_MEDIA)
|
||||
|
||||
#define IS_EOF(err) ((err) == ERROR_FILEMARK_DETECTED \
|
||||
|
Reference in New Issue
Block a user