Scol headers for shared libraries
=================================

Authors :
	Jean-François Verdon
	Stéphane Bisaro <iri@irizone.net>
	
What ?
	Headers for compilation and communication with the Scol kernel
	Warning : doesn't work yet to the server version
	
How to use ?
	A simple include in your project :
	#include "mscol.h"

	Don't forget to define the path resources compiler
	
	Loading function :
	SCOL_CALL_PLUGIN_EXPORT int ScolLoadPlugin (SCOL_CALL_PLUGIN_ARG)
	{
    	mm = m;

    	SCOL_CALL_PLUGIN_INIT
    	/* what you need ... */
	}
	
	Freeing function
	SCOL_CALL_PLUGIN_EXPORT int ScolUnloadPlugin ()
	{
		/* what you need ... */
	}
	
To do
	Scol server version
	and more