Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2108422
  • 博文数量: 413
  • 博客积分: 10926
  • 博客等级: 上将
  • 技术积分: 3862
  • 用 户 组: 普通用户
  • 注册时间: 2006-01-09 18:14
文章分类

全部博文(413)

文章存档

2015年(5)

2014年(1)

2013年(5)

2012年(6)

2011年(138)

2010年(85)

2009年(42)

2008年(46)

2007年(26)

2006年(59)

分类: WINDOWS

2006-12-28 22:28:50

  1. Books:
    《windows程序设计》 [美]Charles Petzold 著,北京博彦科技发展有限公司 译,北京大学出版社出版
    封面:
    目录:
  2. Support Multiple Languare
    1. Create different project (set project type dll) for every supported language
    2. Create corresponding resource file (RC) in each project
    3. Build all projects with additional linker command option "/noentry" to generate .dll files respectively
    4. Call "::LoadLibraryEx" with flag "LOAD_LIBRARY_AS_DATAFILE" to load proper .dll resource file in source code
    5. Call "::LoadString" to read string in the .dll resource file, the handle instance is opened by calling "::LoadLibraryEX"
    6. Call "::LoadImage" to read images from .dll resource file.
    7. Call "::LoadIcon" to read icons from .dll resource file.
    8. Call "::GetDlgItem" to read dialog from .dll resource file.
    9. Call "::FreeLibrary" to free the handle opened by calling "::LoadLibraryEX"
  3. ...
阅读(2926) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~