Hi, I have tried to deploy a simconnect program written in c# as dll but I
should be missing the point.
Simconnect log says:
57.57868 DLL Start Proc not found: StartProc="DLLStart" Path="TestDLL.dll"
57.57871 DLL Stop Proc not found: StopProc="DLLStop" Path="TestDLL.dll"
57.57875 DLL Load Failed: Error=-2 Path="TestDLL.dll"
And the dll is as simple as:
Any ideas about what is wrong?
Thanks in advance
should be missing the point.
Simconnect log says:
57.57868 DLL Start Proc not found: StartProc="DLLStart" Path="TestDLL.dll"
57.57871 DLL Stop Proc not found: StopProc="DLLStop" Path="TestDLL.dll"
57.57875 DLL Load Failed: Error=-2 Path="TestDLL.dll"
And the dll is as simple as:
Code:
namespace TestDLL
{
public class Class1
{
public static int DLLStart()
{
return 0;
}
public static void DLLStop()
{
}
}
}
Any ideas about what is wrong?
Thanks in advance






