Wrap LODWORD and HIDWORD into if-checks to prevent duplicate inclusions

This commit is contained in:
fwcd 2019-04-06 16:03:55 +02:00
commit 6f1b7ebe54

View file

@ -2,5 +2,10 @@
#include <cstdint>
#ifndef LODWORD
#define LODWORD(qw) ((uint32_t)(qw))
#endif
#ifndef HIDWORD
#define HIDWORD(qw) ((uint32_t)(((qw) >> 32) & 0xffffffff))
#endif