Awhile back, I did a speed comparison using a DLL compared to compiled/interpreted EZ language. I ran both of them as they would be executed by my platform. The results for a million runs may surprise you.
1 million runs EZ language compiled/interpreted code: 203 millisec
1 million runs DLL: 781 milliseconds
Since the DLL needs over 5 parameters to call it, the overhead from these calls seems to outweigh any edge from pure compilation.
1 million runs EZ language compiled/interpreted code: 203 millisec
1 million runs DLL: 781 milliseconds
Since the DLL needs over 5 parameters to call it, the overhead from these calls seems to outweigh any edge from pure compilation.