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
It's unsigned so map it to uint.