what is the equivelant to DWORD?

  • Thread starter Thread starter Chris LaJoie
  • Start date Start date
C

Chris LaJoie

I'm converting some APIs to C# and I'm wondering what the equivelant of a
DWORD is. I'm thinking it's a uint, but I'm uncertiain. Can anyone confirm
that?

Chris
 
Chris said:
I'm converting some APIs to C# and I'm wondering what the equivelant
of a DWORD is. I'm thinking it's a uint, but I'm uncertiain. Can
anyone confirm that?

DWORD is an unsigned 32-bit long so a uint should work just fine.

--
There are 10 kinds of people. Those who understand binary and those who
don't.

http://code.acadx.com
(Pull the pin to reply)
 
Frank Oquendo said:
DWORD is an unsigned 32-bit long so a uint should work just fine.

A signed int is usually ok also, depending on what you need to do.
 
Back
Top