Code
#include <default.c>
#include <stdio.h>

int main() {
	
	T6* t = malloc(sizeof(T6));	
	
	DATE ttime  = dmy(20170101);
	
	t->time = ttime; // UTC timestamp of the close, DATE format
	  
	t->fHigh =1;
        t->fLow =1; 
        t->fOpen =1; 
        t->fClose=1; 
	t->fVal=0;
	t->fVol=0; // additional data, ask-bid spread, volume etc.

   //FILE* f = fopen("C:\\Zorro\\History\\USD_t.t6","w");
	
	//if (f) fwrite(t,sizeof(T6),1,f);
	
	//fclose(f);
	
	free(t);
	
	return 0;
}
and this gives a "can't open clib.dll"...