2017年9月16日
摘要: 1 //多字符集 2 3 #include "stdafx.h" 4 #include 5 #include 6 7 using namespace std; 8 9 BOOL MakeSureDirectoryPathExists(char* DirectoryFullPath); 10 11 int main() 12 { 13 char* Direct... 阅读全文
posted @ 2017-09-16 14:49 czhang4 阅读(184) 评论(0) 推荐(0)
摘要: 1 #define DELAY_ONE_MICROSECOND (-10) 2 #define DELAY_ONE_MILLISEND (DELAY_ONE_MICROSECOND*1000) 3 void Sleep(LONG Millisend) 4 { 5 LARGE_INTEGER Interval; 6 Interval.QuadPart = DELAY_ONE_M... 阅读全文
posted @ 2017-09-16 14:46 czhang4 阅读(250) 评论(0) 推荐(0)