mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 14:13:30 -07:00
Replace DWORD in HIDWORD and LODWORD by uint32_t
This commit is contained in:
parent
ce9f22d08e
commit
42c5108635
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#define LODWORD(qw) ((DWORD)(qw))
|
||||
#define HIDWORD(qw) ((DWORD)(((qw) >> 32) & 0xffffffff))
|
||||
#include <cstdint>
|
||||
|
||||
#define LODWORD(qw) ((uint32_t)(qw))
|
||||
#define HIDWORD(qw) ((uint32_t)(((qw) >> 32) & 0xffffffff))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue