大约有 23,400 项符合查询结果(耗时:0.0299秒) [XML]

https://www.tsingfun.com/it/cpp/1254.html 

一分钟明白 VS manifest 原理 - C/C++ - 清泛网 - 专注C/C++及内核技术

...赖做了重定向: <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.VC80.DebugCRT" processorArchitecture="ia64" publicKeyToken="1fc8b3b9a1e18e3b"/> <bindingRedirect oldVersion="8.0.41204.256-8.0.50608.0" newVersion="8.0.50727.42"/> </dependentAssembly> 指明"8.0.41204.25...
https://www.tsingfun.com/it/cpp/1282.html 

解决:Run-Time Check Failure #0,The value of ESP was not properly sav...

...ok了。 注意,上面是使用 MFC (DLL)的做法。 如果是WIN32 DLL,得相应的去掉WINAPI ,__stdcall ,FAR PASCAL 这几个参数。因为WIN32 DLL 默认的入栈方式为 __cedcall方式,不是__stdcall方式。 具体的组合方式太多了,反正知道错误的原因...
https://www.tsingfun.com/it/cpp/1501.html 

C语言面试那些事儿──一道指针与数组问题 - C/C++ - 清泛网 - 专注C/C++及内核技术

... gcc 4.4.5的运行结果: size of a: 20 (bytes) (Why? 因为机器是32位的, size of int 为 4 bytes,a有5个int) size of ptr: 4 (bytes) (ptr是指针,永远不要忘记,32位字长的机器,指针长度是4) ptr的地址:bfb5c52c (取决于具体情况,这里只是为...
https://www.tsingfun.com/it/cpp/1700.html 

为什么编译好的libcurl静态lib用不了? - C/C++ - 清泛网 - 专注C/C++及内核技术

...代码 #ifdef CURL_STATICLIB # define CURL_EXTERN #elif defined(WIN32) || defined(_WIN32) || defined(__SYMBIAN32__) # if defined(BUILDING_LIBCURL) # define CURL_EXTERN __declspec(dllexport) # else # define CURL_EXTERN __declspec(dllimport) # endif #elif defined(BUILDING_LIBCUR...
https://www.tsingfun.com/it/cpp/2052.html 

coinitialize失败,返回值是0x80010106 无法在设置线程模式后对其加以更改 ...

... 注意:要使用CoInitializeEx必须在代码开始包含#define _WIN32_DCOM预编译命令 一 个线程,除了调用CoGetMalloc函数和其它内存分配(CoTaskMemAlloc, CoTaskMemFree,CoTaskMemReAlloc, and the IMalloc methods on the task allocationsupplied byCoGetMalloc),在调用任何...
https://www.tsingfun.com/it/cpp/2199.html 

C/C++获取Windows的CPU、内存、硬盘使用率 - C/C++ - 清泛网 - 专注C/C++及内核技术

...e(FILETIME time1, FILETIME time2) { __int64 a = time1.dwHighDateTime << 32 | time1.dwLowDateTime; __int64 b = time2.dwHighDateTime << 32 | time2.dwLowDateTime; return (b - a); } //Win CPU使用情况 void getWin_CpuUsage() { HANDLE hEvent; BOOL res; FILETIME preidleTime; FILET...
https://www.tsingfun.com/it/pr... 

项目管理实践教程一、工欲善其事,必先利其器【Basic Tools】 - 项目管理 -...

... http://downloads.sourceforge.net/tortoisesvn/TortoiseSVN-1.5.5.14361-win32-svn-1.5.4.msi?download 简体中文语言包下载: http://downloads.sourceforge.net/tortoisesvn/LanguagePack_1.5.5.14361-win32-zh_CN.msi?download TortoiseSVN 中文资料: http://www.subversion.org.cn/tsvndoc/ htt...
https://bbs.tsingfun.com/thread-841-1-1.html 

C语言面试那些事儿──一道指针与数组问题 - c++1y / stl - 清泛IT社区,为创新赋能!

... + gcc 4.4.5的运行结果:size of a: 20 (bytes) (Why? 因为机器是32位的, size of int 为 4 bytes,a有5个int)size of ptr: 4 (bytes) (ptr是指针,永远不要忘记,32位字长的机器,指针长度是4)ptr的地址:bfb5c52c (取决于具体情况,这里只是为了...
https://bbs.tsingfun.com/thread-1682-1-1.html 

蓝牙通信接收的信息出现乱码? - App应用开发 - 清泛IT社区,为创新赋能!

ESP32发送的是英文字符和数字,编译的蓝牙APP接收的是乱码 请问怎么解决以上问题?我们已经解决过类似问题,有一篇深入的乱码的原理及解决思路的文章:https://www.fun123.cn/reference/iot/bluetooth_codec.html 这里仅提供一下思路: 1、...
https://stackoverflow.com/ques... 

__FILE__, __LINE__, and __FUNCTION__ usage in C++

... Mr.ReeMr.Ree 7,7842323 silver badges2828 bronze badges 2 ...