View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
[email protected] dwidavidwilkinson@yahoo.com is offline
external usenet poster
 
Posts: 6
Default Can I still register a function in a DLL using ExecuteExcel4Macro REGISTER?

Hi witek:

cube.c:

double _stdcall square (double *x)
{
return *x * *x;
}

I have no header..

cube.def:

LIBRARY "square"
EXPORTS
square

Thanks