2

I have generated a DLL froma JAR file using IKVM doing:

ikvmc -target:library mylib.jar

I would like to use the DLL in a Visual C++ project. What are the steps required to call dll functions from my own code? How do I know which methods are exported by the DLL and how do I call them without a header file?

Horcrux7
  • 23,758
  • 21
  • 98
  • 156
Salvatore
  • 1,145
  • 3
  • 21
  • 42

1 Answers1

1

The IKVM.NET is written for the .NET framework 2.0. The usage inside a Visual Studio C++ project can be difficult. But it should be possible to access it via COM interface. Take a look at this answer.

Community
  • 1
  • 1
Horcrux7
  • 23,758
  • 21
  • 98
  • 156