Showing posts with label Library. Show all posts
Showing posts with label Library. Show all posts

2012/05/21

WTL 8.1.12085 Release

WTL이 오랜만에 업데이트 되었다.

몇 달 전에도 11324버전이 공개가 되었었는데 하도 업데이트가 되지 않는 프로젝트라 몰랐었다.



변경된 내용은 아래와 같다. (source forge 로부터 발췌)

WTL 8.1 build 12085 (3/25/2012)





Changes:






Support for VC++ 11 Beta:


- DLL version functions are again undefined as they are removed from ATL11


- AppWizard setup scripts for VC++ 11 and VC++ 11 Express






AppWizard: Added code to default.js to add trailing backslashes to output and intermediate


directories for VS2010 and later






Work for #3485171 - Consolidate _ATL_MIN_CRT specific code in WTL


Implemented common _ATL_MIN_CRT code in MinCrtHelper napespace in atlapp.h


+ moved declaration of WM_MOUSEHWHEEL from atlscrl.h to atlapp.h






atlddx.h: Removed DDX_INDEX for VC6 - it just cannot deal with specialized template functions






atlribbon.h: Fix for x64 warning






Fix for #3424418 - MSG_WM_SYSCOMMAND handler prototype doesn't match.


http://sourceforge.net/projects/wtl/ 





<

Original Post : http://neodreamer-dev.tistory.com/653

2008/08/07

2008/07/25

C++ Builder 용 SQLite Library 파일 만들기...

SQLite DLL을 다운로드 받으면 sqlite3.dll 과 sqlite3.def 파일이 있다.

그 중에 dll 파일에서 C++ Builder 에서 사용할 library 파일을 만들 수 있다.

이때 사용하는 프로그램은 Codegear 사에서 제공하는 ImpLib 라는 프로그램을 사용하면 된다.

sqlite3.dll 이 위치한 곳에서 아래 명령을 수행하면 sqlite3.lib 파일이 생성된다.

   > IMPLIB -a sqlite3.lib sqlite3.dll

이제 만들어진 sqlite3.lib를 원하는 프로젝트에 포함시키면 C++ Builder 에서도 작고 강력한 SQLite 를 사용할 수 있다.

프로그래밍 방법은 지난 포스팅을 참고하면 된다. 실 사용은 C++ Builder나 Visual C++ 이나 크게 차이가 없다.

2008/07/23 - [Dev Story/Tips] - Visual C++ 2005 에서 간단하게 SQLite Database 사용하기
 


C++ Builder 용 Library 파일