Contents
========

1. Introduction
2. Using with the mingw32 compiler
3. Using with the microsoft compiler

1) Introduction
===============

This archive contains all the files you should need to develop an application
using the fdms library. It consists of the following files:

fdms.h
------
The header file containing function definitions. You'll need to include
this to compile your code. It also contains documentation for each function.

fdms.dll
--------
The runtime library which exports the functions declared in fdms.h. You will
need to make this available to your compiled application, usually by copying it
into the same directory or a system folder.

fdms.lib
--------
This is the import library suitable only for the mingw32 compiler. It will not
work with microsoft compilers.

fdms.def
--------
You can use this to generate an fdms.lib compatible with windows compilers.

2) Using with mingw32 compiler
==============================

Compile your code as usual, but link against the import library fdms.lib

3) Using with microsoft compiler
================================

The provided import library will not work, but you can generate a compatible one
easily using the LIB tool and the included .def file:

lib /machine:i386 /def:fdms.def
