Skip to content

Latest commit

 

History

History
12 lines (12 loc) · 1.53 KB

MAPPING.md

File metadata and controls

12 lines (12 loc) · 1.53 KB

Overview

C Data Type Windows Data Type - Macro Size (Bytes/bits) java/JNA Data Type
char/byte UCHAR 1B/8b byte
unsigned short USHORT 2B/16b short (@Unsigned)/WinDef.USHORT
unsigned long (int) ULONG 4B/32b int (@Unsigned)/WinDef.ULONG
unsigned long (int) DWORD/AccessMask 4B/32b int (@Unsigned)/WinDef.DWORD
unsigned __int64 ULONG64 8B/64b long (@Unsigned)/WinDef.ULONGLONG

References

Basic Types/Size: Web | Permalink
Windows Data Types/Mapped C Data Types: Web | Permalink
JNA Data Types: Web | Permalink