摘要: 有时候不得已需要调试一下dll源码,怎么办呢。如下: 使用dll源码工程来进行调试,将启动点设置为调用该dll的工程,working目录设置为调用dll的工程目录即可。 在dll源码中打断点,就会从调用dll的工程启动然后进入dll源码中。 阅读全文
posted @ 2016-04-12 20:10 witxjp 阅读(508) 评论(0) 推荐(0) 编辑
摘要: Learn any language in 6 months 阅读全文
posted @ 2016-02-27 19:04 witxjp 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1.Can you please stop talking about the Turkish singer and enjoy this song.2.Please feel free to contact with me if you need any assistance.3.Any help... 阅读全文
posted @ 2015-12-24 21:38 witxjp 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 今天在看gnu tools时发现了这方面的2个资源。一本书是《程序员的自我修养:链接、装载与库》云风的blog有提到这本书,让我意外的是这本书居然是国人所著。有空花精力淘回来拜读。进入云风的blog有提到另一本国外经典《loaders and linkers》,我打算拜读一下。其实最好的资料当属gc... 阅读全文
posted @ 2015-12-12 14:41 witxjp 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 本来是想研究下lua源码的,但是在看了云风的>之后,觉得自己的level太低,跟不上楼主的节奏。无奈又看了下>,从中吸取了部分营养。也看了这个网站http://www.zhihu.com/question/20617406在>中提到LuaJIT的作者建议了一个lua源码的阅读顺序,首先应熟悉exte... 阅读全文
posted @ 2015-11-18 20:04 witxjp 阅读(180) 评论(0) 推荐(0) 编辑
摘要: http://www.ifp.illinois.edu/~chenyq/research/Utils/DxVideoAppWiz/DxVideoAppWiz.html一个非常棒的DirectX Video Processing AppWizard,备忘。 阅读全文
posted @ 2015-11-14 22:24 witxjp 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 在侯捷《word排版艺术》一书中有一个很实用的vba宏,可通过录制宏,打开vba代码窗口,然后添加如下代码:Dim nLineNum '行号(数值)Dim sLineNum As String '行号(文字)Dim selRge As Range '用以记录整区块程序代码(多行)Dim i '计数器... 阅读全文
posted @ 2015-11-14 22:20 witxjp 阅读(847) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 using namespace std; 3 4 void main() 5 { 6 float a = 1.0f; 7 cout 0指数部分 -> 0+127 = 01111111尾数部分 -> 0即 0011 1111 1000 0000 000... 阅读全文
posted @ 2015-11-14 19:30 witxjp 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 using namespace std; 3 4 struct Test 5 { 6 int Num; 7 char *pcName; 8 short sDate; 9 char ch[2];10 short str[4];11... 阅读全文
posted @ 2015-11-14 19:22 witxjp 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 结果是不能编译通过,如下大致意思是常量size2是用变量temp定义的,所以size2的值是不固定的,不固定的值当然是不能够用来定义数组的,因为编译器在编译的时候就需要知道给数组分配多大空间,而变量的值在运行时有可能变化。将char str2[size2]这句去掉是可以编译通过的,这说明const常... 阅读全文
posted @ 2015-11-14 18:43 witxjp 阅读(12380) 评论(0) 推荐(0) 编辑