DLL Tutorial

DLL Tutorial

Dynamic Link Library (DLL) is Microsoft's implementation of the shared library concept. A DLL file contains code and data that can be used by multiple programs at the same time, hence it promotes code reuse and modularization. This brief tutorial provides an overview of Windows DLL along with its usage.

Audience

This tutorial will be useful for software programmers interested in learning the concepts of Windows DLL and how to use them in practice.

Prerequisites

You must have a good understanding of Windows concepts and you should be familiar with either VC++ or C/C++.

Advertisements