Ich prüfe auf
Code:
HINSTANCE hinstMathe = LoadLibrary(_T("MatheDLL.dll"));
...
if(hinstMathe)
{
...
Funktion = (TAdd *) GetProcAddress(hinstMathe, "Addieren");
if(Funktion)
{
dErgebnis = (*Funktion) (dA,
dB);
printf("A + B: %.4lf \n", dErgebnis);
}
...
}
und im Debugger springt in die Bedingung hinein. Also wird er sie wohl geladen haben (nehm ich jedenfalls stark an
)