Visual Studio
-
Visual Studio 2010 Find & Replace 창 크기 버그Computer/Software 2011. 10. 4. 17:44
Visual Studio 2010 은 Find & Replace 창 버그가 있어서, Ctrl+F 를 누를 때마다 크기가 점점 커져서 불편해 진다. Microsoft에서 Patch를 내 놓았는데 실행하고 나면 문제가 해결된다. https://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=30518 VS 2011은 찾기가 좀 더 편리하게 바뀌기 때문에 기대가 된다.
-
A Simple Python Wrapper to Undecorate Visual Studio Linker Symbol NamesComputer/Programming 2008. 9. 24. 17:30
While writing a Windows binary program analyzer, I needed a name unmangler which returns a function name and its namespace. Since I am writing the program analyzer with Python and C++, I first tried to find a python name unmangler. But so far, there is no python unmangler. There was a discussion about the need of the python unmangler script at OpenRCE. Anyway, I planed to write a C function that..
-
Visual Studio 2005에서 Library 겹쳐서 에러 나올 때 대처 방법Computer/Programming 2008. 9. 9. 00:03
VS98 프로젝트를 이용하는 다른 라이브러리 등을 링크하다 보면 링크 에러가 무수히 나오는데, 이 때 할 수 있는 방법이 링커 옵션에 /NODEFAULTLIB:"libcmt.lib" 과 같은 것을 추가해 주는 것이다. Project - Property - Configuration - Properties - Linker - Input - Ignore Specific Library 에 가서 겹치는 library들을 추가해 준다. 또는Command Line (명령줄) 에다가 /nodefaultlib:"libcmt.lib"과 같은 것을 추가하면 된다.