12 2019 档案

摘要:char* UnicodeToUtf8(const wchar_t* unicode) { int len; len = WideCharToMultiByte(CP_UTF8, 0, unicode, -1, NULL, 0, NULL, NULL); char *szUtf8 = (char*) 阅读全文
posted @ 2019-12-30 16:38 r00t_exp 阅读(292) 评论(0) 推荐(0)
摘要:需要添加的依赖项: libcurl_a.libws2_32.libwinmm.libwldap32.libssleay32.liblibeay32.libmsvcrtd.libzlib.libNormaliz.lib 预编译头: CURL_STATICLIBBUILDING_LIBCURLHTTP_ 阅读全文
posted @ 2019-12-26 18:18 r00t_exp 阅读(370) 评论(0) 推荐(0)
摘要:#include <string> #include <stdio.h> string GetUnixTime() { string nowTimeUnix; string cs_uninxtime; string cs_milliseconds; SYSTEMTIME sysTime; GetLo 阅读全文
posted @ 2019-12-08 20:15 r00t_exp 阅读(1345) 评论(0) 推荐(0)
摘要:int GenerateMiniDump(PEXCEPTION_POINTERS pExceptionPointers) { // 定义函数指针 typedef BOOL(WINAPI * MiniDumpWriteDumpT)( HANDLE, DWORD, HANDLE, MINIDUMP_TY 阅读全文
posted @ 2019-12-06 14:21 r00t_exp 阅读(745) 评论(0) 推荐(0)