我QueryPerformanceCounter();
用来获取一个数字,用作要包含在文件名中的唯一时间戳。
LARGE_INTEGER performanceCount;
QueryPerformanceCounter(&performanceCount);
我需要将performanceCount.HighPart
哪个类型LONG
和performanceCount.LowPart
哪个类型编码DWORD
为 base64 字符串。然后连接它们并将它们存储在一个wstring
变量中。
我怎样才能做到这一点?