When translating the Windows API (including data types) into P/Invoke, should I replace DWORD with int or uint?
int
uint
It\'s normally unsigned, but I
According to official Platform invoke data types mapping table DWORD corresponds to System.UInt32 in C#.
DWORD
System.UInt32