Visual Studio
csyounth
这个作者很懒,什么都没留下…
展开
-
VC编译设置里的斜杠和反斜杠
设置VC编译选项的时候,路径不区分斜杠和反斜杠,但写在路径结尾的斜杠一定要用反斜杠。我记得有一个文档非常详细地说明这个事,但临时找不到,下次看见贴这里。原创 2012-02-29 17:46:03 · 1328 阅读 · 0 评论 -
Visual Assist X的安装
安装完Visual Assist X,把C:\Users\Ptolemaeus\AppData\Local\Microsoft\VisualStudio\10.0\Extensions\Whole Tomato Software\Visual Assist X\10.6.1862.0下的VA_X.dll替代了,再在Tools->Extension Manager升级。原创 2012-03-08 21:11:41 · 904 阅读 · 0 评论 -
Win7 64位操作系统下CreateProcess函数运行System32文件夹下批处理文件出错的原因
在Windows7 64位操作系统下,VisualStudio编译32位应用,调用CreateProcess运行System32文件夹下批处理文件会失败,GetLastError返回值是2。查询Error Lookup返回信息:系统找不到指定文件。其原因在于64为操作系统对于32位程序调用System32下文件的处理方式[1]。对于64位操作系统来说,C:\Windows\System32文件原创 2012-08-09 14:50:05 · 6901 阅读 · 1 评论 -
Linker Tools Warning LNK4098
http://msdn.microsoft.com/en-us/library/6wtdswk0.aspxdefaultlib 'library' conflicts with use of other libs; use /NODEFAULTLIB:libraryYou are trying to link with incompatible li转载 2013-08-19 09:58:17 · 547 阅读 · 0 评论 -
Introducing the Bugslayer: Annihilating Bugs in an Application Near You
一篇超老的文章,但很有用,文风朴实易读,怕以后找不到,保存在这里October 1997Introducing the Bugslayer: Annihilating Bugs in an Application Near YouJohn RobbinsThe Debug Run-Tim转载 2013-08-22 09:48:09 · 925 阅读 · 0 评论 -
深入体会__cdecl与__stdcall
在学习C++的过程中时常碰到WINAPI或者CALLBACK这样的调用约定,每每觉得十分迷惑。究竟这些东西有什么用?不用他们又会不会有问题?经过在网上的一番搜寻以及自己动手后,整理成以下的学习笔记。1.WINAPI与CALLBACK 其实这两者在Windows下是相同的,在windef.h中定义如下:#ifdef _MAC#define CALLBACK P转载 2013-10-06 13:09:54 · 529 阅读 · 0 评论 -
Introdution to 3D Game Programming With DirectX11这本书的代码怎么在VS2012下编译?
刚一上来的Introdution里的Demo演示例程就会因为Effect11.lib的版本不对而编译不通过,你需要去X:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\Samples\C++\Effects11下去用vs2012重新编译,然后放回Common文件夹,就好了原创 2013-10-09 20:59:54 · 843 阅读 · 0 评论