I have a dll that works with VB.NET, but I can't get it to work with VB 6.0. Any ideas?

The function in the dll is simple. It's pretty much:
Code:
_declspec(dllexport) int _stdcall returnOne()
{
   return 1;
}