in reply to Win32 FILETIME and 64-bit numbers
A little confusing as the bits need to be packed in the reverse order of the filetime integer. I plan to add a class method to directly decode the 64 bit-integer to that module, only problem is that i only encounter VT_FILETIME as a pointer to a struct through the API. Where else does this (bizzarre) time format crop up in the wild? I'd like to test it the raw integer but I've not yet seen a function that returns it in this form.typedef struct _FILETIME { DWORD dwLowDateTime; DWORD dwHighDateTime; } FILETIME, *PFILETIME;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Win32 FILETIME and 64-bit numbers
by John M. Dlugosz (Monsignor) on Aug 06, 2002 at 19:58 UTC |