首页
社区
课程
招聘
[ZT]Best Practices for Creating DLLs
发表于: 2006-6-16 23:38 2451

[ZT]Best Practices for Creating DLLs

2006-6-16 23:38
2451
A dynamic link library (DLL) consists of shared code and data that an application can load at run time, rather than statically link at compile time. Advantages of using DLLs include reduced code footprint, lower memory utilization due to single-copy-sharing, flexible development and testing, modularity and functional isolation, and so on.

This paper provides guidelines for developing robust, portable, and extensible DLLs for the Windows family of operating systems.

Included in this paper:

• The Library Loader, DLLMain, and the Loader Lock

• Interactions Between the Loader, the Loader Lock, and DLLMain

• Best Practices for Implementing DLLMain

http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx

[培训]《安卓高级研修班(网课)》月薪三万计划,掌握调试、分析还原ollvm、vmp的方法,定制art虚拟机自动化脱壳的方法

收藏
免费 1
支持
分享
最新回复 (1)
雪    币: 247
活跃值: (18)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
非常感谢
2006-6-17 01:26
0
游客
登录 | 注册 方可回帖
返回
//