mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 06:13:14 -07:00
Remove unused data types from win_data_types_cross_platform.h
This commit is contained in:
parent
a0e880e75d
commit
49fd24e962
1 changed files with 0 additions and 22 deletions
|
@ -1,26 +1,4 @@
|
|||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
typedef uint64_t ULONGLONG;
|
||||
typedef int32_t INT;
|
||||
typedef uint8_t CHAR;
|
||||
typedef int32_t LONG;
|
||||
typedef uint8_t BYTE;
|
||||
typedef uintptr_t UINT_PTR;
|
||||
typedef unsigned long ULONG_PTR;
|
||||
typedef uint32_t ULONG32;
|
||||
typedef uint32_t DWORD;
|
||||
typedef uint32_t ULONG;
|
||||
typedef uint16_t USHORT;
|
||||
typedef wchar_t WCHAR;
|
||||
typedef uint16_t WORD;
|
||||
typedef UINT_PTR WPARAM;
|
||||
typedef ULONG_PTR DWORD_PTR;
|
||||
|
||||
#define LOWORD(dw) ((WORD)(((DWORD_PTR)(dw)) & 0xffff))
|
||||
#define HIWORD(dw) ((WORD)((((DWORD_PTR)(dw)) >> 16) & 0xffff))
|
||||
#define LODWORD(qw) ((DWORD)(qw))
|
||||
#define HIDWORD(qw) ((DWORD)(((qw) >> 32) & 0xffffffff))
|
||||
|
||||
#define ARRAYSIZE(a) (sizeof(a) / sizeof(*a))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue