摘要: In debugging, it's always annoying to step into CString like classes as in most cases we don't need to get into there. There does exist solution to NoStepInto functions/classes you don't intend to step into:1. Ahead of VS20101) Look into this article to add something into Registry: How t 阅读全文
posted @ 2011-07-01 16:30 能巴 阅读(254) 评论(0) 推荐(0) 编辑
摘要: Two ways to make use of it:1) directly declare a function pointer variable at the place where it's required. like below:void (*pFunc)(int); // pFunc is a variable herepFunc = &FuncA;pFunc(2);2) typedef a function poiner type and then use it. like below:typedef void (*pFunc)(int);pFunc pFuncO 阅读全文
posted @ 2011-07-01 15:42 能巴 阅读(144) 评论(0) 推荐(0) 编辑