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

https://www.tsingfun.com/it/tech/1695.html 

如何设置squid使外网也可以通过代理服务器上网,并且使用代理服务器ip地...

... dns_nameservers ******** cache_effective_user squid squid http_access allow all 原来加上一条 http_reply_access allow all 就可以了。squid 代理服务器
https://www.tsingfun.com/it/cpp/1357.html 

C++ 读写xml方法整理(持续更新) - C/C++ - 清泛网 - 专注C/C++及内核技术

...******************* * outline.c * * Copyright 1999, Clark Cooper * All rights reserved. */ #include <stdio.h> #include <expat.h> #if defined(__amigaos__) && defined(__USE_INLINE__) #include <proto/expat.h> #endif #ifdef XML_LARGE_SIZE #if defined(XML_USE_MSC_EXTENSIONS) && _MS...
https://www.tsingfun.com/it/cpp/1902.html 

c++文件流基本用法(ifstream, ostream,fstream) - C/C++ - 清泛网 - 专注C/C++及内核技术

...write函数来读写文件。可参见: https://www.tsingfun.com/it/cpp/all_programming_language_file_read_write_summary.html#C c++ ,文件流,ifstream, ostream,fstream
https://www.tsingfun.com/it/tech/1889.html 

win10启动过程中黑屏时间长解决办法 - 更多技术 - 清泛网 - 专注C/C++及内核技术

... 3.重启电脑。 “EnableUlps” parameter is now set to zero for all AMD cards. Disabling this parameter should fix Delayed Startup/BSODS on many laptops. 原来整合包就是通过关闭ulps解决开机延迟问题。ULPS全称Ultra Low Power State,ULPS是休眠状态 ,降低非...
https://www.tsingfun.com/it/cp... 

Linux C++ 单元测试与gcov代码覆盖率统计 - C/C++ - 清泛网 - 专注C/C++及内核技术

...cpp.gcov lcov --rc lcov_branch_coverage=1 -c -d . -o demo_lcov_report #all #genhtml --rc genhtml_branch_coverage=1 demo_lcov_report -o out_report #filter lcov --rc lcov_branch_coverage=1 -r demo_lcov_report '/usr/include/*' '*lib/*' -o filtered_coverage genhtml --rc genhtml_branch_coverage=1...
https://www.tsingfun.com/it/cpp/951.html 

ATL COM开发入门(一)(JS调用ActiveX/COM组件) - C/C++ - 清泛网 - 专注C/C++及内核技术

...g retStr; retStr.Format(_T("%s%s"), *pStr1, *pStr2); *pRetStr = retStr.AllocSysString(); return S_OK; } 四、写一个简单html网页进行测试: <HTML> <HEAD> <TITLE>COM接口测试页</TITLE> <script type="text/javascript"> function Test(){ var retStr = AtlDemoObj.Conc...
https://www.tsingfun.com/it/cpp/1348.html 

NSIS学习笔记(持续更新) - C/C++ - 清泛网 - 专注C/C++及内核技术

...code\Plugins" echo off Q 桌面快捷方式,示例 在section "install"中添加下面代码,新建shortcut CreateShortcut "$DESKTOP\${APPNAME}.lnk" "$INSTDIR\${APPEXENAME}" 在section "uninstall"中添加下面代码,删除shortcut delete "$DESKTOP\${APPNAME}.lnk" Q 关...
https://bbs.tsingfun.com/thread-616-1-1.html 

如何获取IE (控件)所有链接(包括Frameset, iframe) - 其他 - 清泛IT社...

来源:新浪博客 IE 顶层 body 节点通过IHTMLElement-&gt;get_all 方法无法获取iframe 里面节点列表: CComPtr&lt;IHTMLElement&gt; body; ... CComPtr&lt;IDispatch&gt; spDispCollection; body-&gt;get_all(&amp;spDispCollection);复制代码所以要获取iframe/frame(frameset) ...
https://www.tsingfun.com/it/cpp/1441.html 

Windows下 C++网络延时检测 - C/C++ - 清泛网 - 专注C/C++及内核技术

... #include "Ping.h" CPing::CPing() { bValid = FALSE; // Dynamically load the ICMP.DLL hndlIcmp = LoadLibrary("ICMP.DLL"); if (hndlIcmp == NULL) { /*cprintf("Error: Could not load ICMP.DLL\n");*/ return; } // Retrieve ICMP function pointers pIcmpCreateFile = (HANDLE (WI...
https://www.tsingfun.com/it/cpp/2140.html 

解决WaitForSingleObject阻塞UI线程问题 - C/C++ - 清泛网 - 专注C/C++及内核技术

...ile (TRUE) { //wait for m_hThread to be over,and wait for //QS_ALLINPUT(Any message is in the queue) dwRet = MsgWaitForMultipleObjects(1, &hThread, FALSE, INFINITE, QS_ALLINPUT); switch(dwRet) { case WAIT_OBJECT_0: break; //break the loop case WAIT_OBJECT_0 + 1: ...