FILETIME转化SYSTEMTIME
情况是这样的
磁盘的一个扇区中写入了一些信息,要将他们读出来,而这个数据是LARGE_INTEGER m_SnapshotTime;定义在结构体中的,
CreateFile("\\\\.\\c:", // drive to open
GENERIC_READ, // no access to the drive
FILE_SHARE_READ | // share mode
FILE_SHARE_WRITE,
NULL, // default security attributes
OPEN_EXISTING, // disposition
0, // file attributes
NULL);
ReadFile (hDevice, Buffer, 512, &bytesread, NULL);
GetFileTime(hDevice, &ftCreate, &ftAccess, &ftWrite);
我想问问 我这个GetFileTime()获取的是什么?
我要怎么样才能将这个指向我需要的地址?