B
babak
Hi
I have a rather simple question that I haven't succeded to find the
answer for in MSDN or other help pages.
I'm using _time64() in VS2005 and I need to know what the return value
of that function is. More precisely, which of the following is correct:
1. DWORD temp = _time64(0);
2. DWORD temp = (_time64(0) >> 32);
or
3. DWORD temp = (DWORD)_time64(0);
where DWORD is an unsigned long (32 bits).
Thanks for your help.
Regards.
/Babak
I have a rather simple question that I haven't succeded to find the
answer for in MSDN or other help pages.
I'm using _time64() in VS2005 and I need to know what the return value
of that function is. More precisely, which of the following is correct:
1. DWORD temp = _time64(0);
2. DWORD temp = (_time64(0) >> 32);
or
3. DWORD temp = (DWORD)_time64(0);
where DWORD is an unsigned long (32 bits).
Thanks for your help.
Regards.
/Babak