lordfritte
Neuling
Hallo ich versuche gerade mit Visual C# 2005 Express ein eigenes Plugin für LCD Smartie zu schreiben.
Mein Plugin sieht bis jetzt so aus:
Wenn ich LCD Smarte starte bekomme ich eine Fehlermeldung:
Auf dem Display erscheint nur: [DLL: No Bridge Func]
Mein Plugin sieht bis jetzt so aus:
Code:
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
using MPSmartie;
namespace MPSmartie
{
public class LCDSmartie
{
public LCDSmartie()
{
}
public string function1(string param1, string param2)
{
return "Test1: " + param1 + " Test2: " + param2;
}
public int GetMinRefreshInterval()
{
return 300; // 300 ms (around 3 times a second)
}
}
}
Wenn ich LCD Smarte starte bekomme ich eine Fehlermeldung:
Code:
Load of plugin failed: Bridge Init for LCDSmartie.dll failed with: Plugin does not contain a type of LCDSmartie.LCDSmartie
Auf dem Display erscheint nur: [DLL: No Bridge Func]