|
-
November 12th, 2009, 07:37 PM
#1
long long int and ULARGE_INTEGER
What is the difference between unsigned long long int and ULARGE_INTEGER? And is ULARGE_INTEGER the same as __int64?
-
November 13th, 2009, 05:40 AM
#2
Re: long long int and ULARGE_INTEGER
unsigned long long int, ULARGE_INTEGER, and unsigned __int64 are integers stored in 64 bits.
FYI, there are also UINT64, ULONGLONG and LONG64, which are also integers stored in 64 bits.
ULARGE_INTEGER is a structure:long long is at the source of several other types:
#define __int64 long long
typedef __int64 LONG64, *PLONG64;
typedef __int64 INT64, *PINT64;
typedef unsigned __int64 UINT64, *PUINT64;
(source: basestd.h)
Myself, when I program for Windows, I like to use UINT64 and INT64.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|