大约有 40,000 项符合查询结果(耗时:0.0462秒) [XML]
给VC/SDK中的应用程序加上皮肤(实例演示) - C/C++ - 清泛网 - 专注C/C++及内核技术
... Lib 静态库,大家在引用的时候要注意文件的路径;
#include "SkinH.h"
#pragma comment(lib,"SkinH.lib")
3、在创建窗口之前加载皮肤文件
SkinH_AttachEx(("skins/MSN.she"), NULL); //这句核心
hwnd = CreateWindow (szAppName, TEXT ("About Box Demo Program"),...
VS Debug调试模式下内存泄露检测原理 - C/C++ - 清泛网 - 专注C/C++及内核技术
...代码文件中包含该头文件,如果有stdafx.h文件,在文件中#include "SetDebugNew.h",这样每个.c或.cpp文件就都使用debug的new版本。
2. 已经按照问题1的解决方案进行修订,但还是有内存泄露没有文件名和代码行号?
没有文件名的内...
vs2010编译boost若干问题解决 - 开源 & Github - 清泛网 - 专注C/C++及内核技术
...录”,添加“C:\Boost\lib”,“包含目录”添加了“C:\Boost\include\boost-1_52”,然后将“boost_1_52_0\stage\lib”中的两个dll文件copy到了我的程序目录下。
重新编译了工程,成功了。运行了下,也一切正常。
vs2010 boost 编译
如何实现phpcms和discuz的Cookie同步 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...
}
修改为
function uc_user_synlogin($uid) {
require_once './include/common.inc.php';
global $_CGLOBAL;
$uid = intval($uid);
$cookietime = $_CGLOBAL['cookietime'];
$return = uc_api_post('user', 'synlogin', array('uid'=>$uid,'cookietime'=>$cookietime));
...
phpcms v9类别调用方法 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...'name'],$TYPE[$typeid]['description'],$TYPE[$typeid]['name'].'类别');
include template('content','type');
}
}
?>
上面的链接即可生效。
phpcms 类别
ucenter应用之间cookietime不能传送问题解决 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...
}
修改为
function uc_user_synlogin($uid) {
require_once './include/common.inc.php';
global $_CGLOBAL;
$uid = intval($uid);
$cookietime = $_CGLOBAL['cookietime'];
$return = uc_api_post('user', 'synlogin', array('uid'=>$uid,'cookietime'=>$cookietime));
...
NSIS脚本编程(持续更新) - 更多技术 - 清泛网 - 专注C/C++及内核技术
..." "取消"
NSIS编程if逻辑:
首先需要包含这个文件:!include logiclib.nsh
Pop $0 ;获取messagebox的返回值,分别是1,2,3
${If} $0 == 1
KillProcDLL::KillProc "xxx.exe"
${Elseif} $0 == 3
Abort ;退出安装
${EndIf}NSIS 脚本编程
linux 通过bind下搭建DNS Server - 更多技术 - 清泛网 - 专注C/C++及内核技术
... { any; };
match-destinations { any; };
recursion yes;
include "/etc/named.rfc1912.zones";
};
假如我想绑定ryan.com到192.168.0.5
vim /etc/named.rfc1912.zones
#附加以下内容并保存
zone "ryan.com" IN {
type master;
file "ryan.com.zone";
...
防挂马:apache禁止访问文件或目录执行权限、禁止运行脚本PHP文件的设置方...
... Invalid command 'php_flag', perhaps misspelled or defined by a module not included in the server configuration.
这里我就不具体说明这个解决办法了,因为禁止php执行的方法,大家看自己的需求去设置就可以了!
【apache配置禁止访问】
1. 禁止访问某...
用VC实现组态王数据的远程共享 - 文档下载 - 清泛网 - 专注C/C++及内核技术
... DDE热连接实现进程间通信的大致流程:首先客服均需要 #include "ddeml.h" 包含相关函数声明,然后都要调用DdeInitialize(参数省略)函数设置回调函数及初始化,并且都要实现自己的回调函数。然后服务端调用DdeNameService(参数省略...
