07 2020 档案
摘要:起因:想远程调试某个程序时,不太便利。某段代码直接跑过。Sleep不靠谱。 目的:程序刚启动时,就卡住,等待VS调式器加入,设置断点,可进行单步调试。 #ifdef _WIN32 #include <Windows.h> #include <debugapi.h> #endif #include <
阅读全文
摘要:#include <iostream> #include <string> #include <vector> //#define linux //#define _WIN32 using namespace std; vector<string> getFilesList(string dir);
阅读全文
摘要:#include <windows.h> // This is required to include before setupapi.h #include <setupapi.h> #include <Cfgmgr32.h> #include <iostream> #include <vector
阅读全文