Hi All,

I'm trying to create DLL in VC++ 6.0 with the follwing spec :

extern "C"
{
int _pascal _export MyFunc(char *szSomeData);
}

Since VC++ environment doesn't support _pascal or _export keywords any more, I cannot compile my project.

I'm using these keywords because one of our application was written in Borland C++ and I must use the above DLL with it.

Brief : Can I create a DLL / LIB in VC++ that can be used in BC++ environment.

Please do help me in this.

Thanks in advance.