1
typedef double (*TDLLEstimateTime)(int,int,int,int,int);
2
TDLLEstimateTime DLLEstimateTime;
3
DLLEstimateTime = (TDLLEstimateTime)GetProcAddress(PsiDLLHI, “EstimateTime”);
4
double EstimateTime(int rep, int n1, int n2, int n3, int n4) {
if (SetupDLL()==1) return DLLEstimateTime(rep,n1,n2,n3,n4);
return 0;
};
