大约有 10,000 项符合查询结果(耗时:0.0090秒) [XML]

https://www.tsingfun.com/it/cp... 

MFC Telnet Application(mfc telnet 端口,代码实现、不调用telnet.exe) ...

...调用telnet.exe。程序源码工程升级后,可能出现编译不过情况,请将stdafx.h中0x0410全部改为0x0501即可。The article demonstrates an MFC GUI Telnet application with server capabilities for incoming connections support. Download demo - 29.9 KB Download source - 42....
https://www.tsingfun.com/it/cp... 

MFC Telnet Application(mfc telnet 端口,代码实现、不调用telnet.exe) ...

...调用telnet.exe。程序源码工程升级后,可能出现编译不过情况,请将stdafx.h中0x0410全部改为0x0501即可。The article demonstrates an MFC GUI Telnet application with server capabilities for incoming connections support. Download demo - 29.9 KB Download source - 42....
https://www.tsingfun.com/it/cp... 

MFC Telnet Application(mfc telnet 端口,代码实现、不调用telnet.exe) ...

...调用telnet.exe。程序源码工程升级后,可能出现编译不过情况,请将stdafx.h中0x0410全部改为0x0501即可。The article demonstrates an MFC GUI Telnet application with server capabilities for incoming connections support. Download demo - 29.9 KB Download source - 42....
https://www.tsingfun.com/it/cp... 

MFC Telnet Application(mfc telnet 端口,代码实现、不调用telnet.exe) ...

...调用telnet.exe。程序源码工程升级后,可能出现编译不过情况,请将stdafx.h中0x0410全部改为0x0501即可。The article demonstrates an MFC GUI Telnet application with server capabilities for incoming connections support. Download demo - 29.9 KB Download source - 42....
https://bbs.tsingfun.com/thread-979-1-1.html 

Windows Server2016服务器C++崩溃时容易不彻底,导致卡住死锁 - C/C++ - 清...

如题,Server2008死锁概率低一些,死锁是由于malloc不可重入导致?感觉很有可能,操作系统底层API行为可能不一致,可能有办法指定2016直接崩溃不让它卡住吧
https://bbs.tsingfun.com/thread-246-1-1.html 

Win7禁用休眠 减少C盘容量占用 - 脚本技术 - 清泛IT社区,为创新赋能!

...容量占用减少立即生效。 另外,减少C盘容量占用常见还有:将虚拟内存位置改到C盘以外。 设置完成后,需要重启计算机方可生效。 傻瓜式终极解决方案:使用CCleaner工具进行清理。http://www.tsingfun.com/html/201 ... 5343_pro_g...
https://bbs.tsingfun.com/thread-778-1-1.html 

vc/mfc *通配符 批量删除文件 - c++1y / stl - 清泛IT社区,为创新赋能!

...0'也一样,笔者亲测,删除有时成功有时失败。 改用C++FindNextFile,支持 * 通配符查找文件,核心代码如下: WIN32_FIND_DATA FindFileData; char szCurPath[MAX_PATH + 1] = { 0 }; GetCurrentDirectory(MAX_PATH, szCurPath); CString findFileName; findFileName.Format(...
https://bbs.tsingfun.com/thread-567-1-1.html 

ThreadXxx.h:100: error: ‘pthread_t’ was not declared in this scope -...

pthread_t在头文件/usr/include/bits/pthreadtypes.h中定义:typedef unsigned long int pthread_t;复制代码它是一个线程标识符。 #include <pthread.h>   解决。
https://bbs.tsingfun.com/thread-893-1-1.html 

解决:Successful WSAStartup not yet performed. Error code : 10093. - c...

出现10093错误原因是应用程序没有调用 WSAStartup,或者 WSAStartup 失败。 原因:调用WSASocket等Socket函数之前必须先执行WSAStartup()初始化。 解决方法: BOOL CxxxApp::InitInstance() {         WSADATA wsaData;    &...
https://bbs.tsingfun.com/thread-486-1-1.html 

xxx.sh: line x: [0: command not found - 脚本技术 - 清泛IT社区,为创新赋能!

由于if [ 后面没有加空格导致。 if [ xxx ] 表达式前后都要有空格。