#import "MT4_FANN.dll"

int     FANN_Create( int num_input, int num_output, int num_neurons_hidden );
int     FANN_CreateFromFile( string fname );
void    FANN_Save( int handle, string fname );
void    FANN_Destroy( int handle );

void    FANN_Train( int handle, double input[], double desired_output[] );
double  FANN_Test( int handle, double input[], double desired_output[] );
void    FANN_Run( int handle, double input[], double& out[] );

#import

