hmm that may have been why just using 'function' worked in my case. This was my dll function...
Code:
typedef void __stdcall callback(void);
...
DLLFUNC void TestFunction(callback* c)
{
	(*c)();
}


without all the 'extern' stuff.

Last edited by DJBMASTER; 05/31/10 01:49.