Struct
Written 1999 by Christof Lange and Mark Wilden
Placed into Public Domain by The Foxpert!

INTRODUCTION	1
VERSION 1.0.0	1
VERSION 1.0.1	1
VERSION 1.1.0	1
Introduction
This document lists all of the modifications of every version. Changes that impact backward compatibility are red-colored. 
Version 1.0.0
07/07/1999: First release of the Struct class library after almost 2 years of development, several unreleased versions and beta testing. What took the most time where the documents.
Version 1.0.1
Added the nFill property when I discovered the need for it during the development of a basic RAS demo. The size of the structure is always a magnitude of this property, therefore the default value is 1. RAS structures, for example, require a value of 4. That means, even if a structure is only 14 bytes long according to the data types, SizeOf() reports a length of 16 bytes (the next highest multitude of 4) and GetString() returns a 16-character string. Otherwise RASAPI32 functions refuse to work with these structures.
Fixed a bug in handling NULL terminated strings. They were treated just like NULL filled strings which of course would cause problems, if there's other "junk" after the terminating NULL. It got added to the string property.
Added several classes to WinStruct.VCX: RASDIALPARAMS, RASENTRY, RASENTRYNAME, RASENTRYNAME_Array and RASIPADDR. These structures are all used in the new RAS.SCX sample form. This form uses several RAS API functions to establish a RAS connection, and query some information like user name and password.
07/23/1999: Version 1.0.1 has been released on Advisor and the Universal Thread.
Version 1.1.0
Changed the name of the Tool from Struct to FoxAPI, because the new version will include more than just structures. My intention is to create a complete library that Visual FoxPro developers can use for API development. This includes a huge number of API declarations, additional header files to make declarations easier, more samples, documentation on how to convert a C declaration to VFP and more.

