• Welcome to Valhalla Legends Archive.
 

FileTime Troubles

Started by UserLoser., January 23, 2004, 09:18 PM

Previous topic - Next topic

UserLoser.

Some values I'm recieving from Battle.net need to be converted from a FILETIME to SYSTEMTIME... Except my only problem is a few of the values are too big to fit in a long, so how can I accomplish storing this value (2651206148) into the dwLowDateTime of the FILETIME struct (which is a long), and successfully convert it over to a SYSTEMTIME struct using FileTimeToSystemTime()?

I've already accomplished this, but the other values are smaller and fit into the FILETIME struct...

Skywing

You could use everybody's favorite RtlCopyMemory hack?

UserLoser.

Quote from: Skywing on January 23, 2004, 09:23 PM
You could use everybody's favorite RtlCopyMemory hack?

Couldn't get it to work, so I went to MS and found this page