========================================================================
			Stephane's Mediathek'97 Export Filter S.D.K
========================================================================

In order to code an Export filter for Mediatek you must respect
the guidelines given in the Readme.txt file and the other source
files for the Import filters. Once done, read the following :

For an export filter, the function names doesn't change. In most cases,
functions purposes and return codes doesn't change either.

But, there's still a few things to check out :

The following functions does the same things than an Import Filter :
- GetFunctionInfo
- SetProperties
- GetFilterInfo

The others functions change a bit :

- Initialize   : creates the file, check a few things if necessary and
			     starts to fill some info if necessary (but not the 
				 Mediathek data)

- CloseImport  : Close the file and dump global objects allocated for Export

- GetStepsNb   : Returns the number of steps required for the export
			     (generally, the number of Media from the list itself)	

- GetNextObject: the pListObj function member will always be NULL
				 the Kind member must be filled out by the filter each time
				 so that Mediathek knows what's has been done ! 

Of course, all the information about the currently selected Mediathek 
are accessible through the pAppList pointer given at initialization 
time, when Initialize function is called from Mediathek. The filter 
must use this structure to access the selected document inside Mediathek.

Good Luck !!
