Maybe it is time to remove the deprecated dllEvalStr-call from the DLL.
newlispEvalStr is used since 8.3 now!
No real problem of cource! ;-)
Remove deprecated dllEvalStr?
Remove deprecated dllEvalStr?
Hans-Peter
Remove from win32dll.c
Edit in win32dll.def
Code: Select all
LPSTR DLLCALL dllEvalStr(LPSTR cmd)
{
return(newlispEvalStr(cmd));
}
Code: Select all
LIBRARY NEWLISP.DLL
EXPORTS
WEP @1 WEP
dllName @2 dllName
newlispEvalStr @3 newlispEvalStr
Hans-Peter