Hi!
Does anyone know what the "& 0xFFFFFFFF" is doing
in this C statement? ft is a FILETIME type. qwResult
is a 64 bit integer (quadword in C). Thanks in advance!
ft.dwLowDateTime = (DWORD) (qwResult & 0xFFFFFFFF );
Taken from MSKB article: http://support.microsoft.com/support.../Q188/7/68.ASP
Scott
Does anyone know what the "& 0xFFFFFFFF" is doing
in this C statement? ft is a FILETIME type. qwResult
is a 64 bit integer (quadword in C). Thanks in advance!
ft.dwLowDateTime = (DWORD) (qwResult & 0xFFFFFFFF );
Taken from MSKB article: http://support.microsoft.com/support.../Q188/7/68.ASP
Scott
Comment