mooyee's blog

C++博客 首页 新随笔 联系 聚合 管理
  3 Posts :: 2 Stories :: 1 Comments :: 0 Trackbacks
最新版本 win8.1系统 不能 hook了,按下hook 没有反应,不会变成unhook
不错!!好!!!
谢谢,不得不说感谢了。现在google上估计只有你提供的才是有效的。
大侠帮忙给看一下吧。
按照您的移植方法在redhat9.0的宿主机环境中,使用arm-linux-gcc编译alsa-drivers时过不去啊,出错报告说:
make -C /kernel-2.6.13 SUBDIRS=/dhcp/alsa-driver-1.0.17 CPP="arm-linux-gcc -E"
CC="arm-linux-gcc " modules
make[1]: Entering directory `/kernel-2.6.13'
Makefile:530: /kernel-2.6.13/arch//Makefile: 没有那个文件或目录
make[1]: *** No rule to make target `/kernel-2.6.13/arch//Makefile'. Stop.
make[1]: Leaving directory `/kernel-2.6.13'
make: *** [compile] Error 2
谢谢!
如何提高today界面的 刷新速度啊?
@albert
文中意思是如果用OO实现GUI封装的化
多谢指点了
用 strtok()也可以
#include <string.h>
#include <stdio.h>

char string[] = "mallid=310103123456\ntermno=139654785231\norder=00003995\n"
"gcode=0000130\npaydate=20051031\nname=\ncardno=5248000262355365\n"
"limit=0804\nprice=2210" ;

char seps[] = "\n";
char *token;

int _tmain(int argc, _TCHAR* argv[])
{
printf( "Tokens:\n" );
/* Establish string and get the first token: */
token = strtok( string, seps );
while( token != NULL )
{
/* While there are tokens in "string" */
printf( " %s\n", token );
/* Get next token: */
token = strtok( NULL, seps );
}

return 0;
}

建议:万不得已时才使用“placement new”语法。只有当你真的在意对象在内存中的特定位置时才使用它。例如,你的硬件有一个内存映象的 I/O计时器设备,并且你想放置一个Clock对象在那个内存位置。

危险:你要独自承担这样的责任,传递给“placement new”操作符的指针所指向的内存区域必须足够大,并且可能需要为所创建的对象进行边界调整。编译器和运行时系统都不会进行任何的尝试来检查你做的是否正确。
re: 再谈从vc6迁移到vs2005 stone 2006-03-15 12:18
都常遇到哪些Bug?