Remove deprecated dllEvalStr?

Machine-specific discussion
Unix, Linux, OS X, OS/2, Windows, ..?
Locked
HPW
Posts: 1390
Joined: Thu Sep 26, 2002 9:15 am
Location: Germany
Contact:

Remove deprecated dllEvalStr?

Post by HPW »

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! ;-)
Hans-Peter

HPW
Posts: 1390
Joined: Thu Sep 26, 2002 9:15 am
Location: Germany
Contact:

Post by HPW »

Remove from win32dll.c

Code: Select all

LPSTR DLLCALL dllEvalStr(LPSTR cmd)
{
return(newlispEvalStr(cmd));
}
Edit in win32dll.def

Code: Select all

LIBRARY     NEWLISP.DLL

EXPORTS
    WEP             @1 WEP
    dllName         @2 dllName
    newlispEvalStr  @3 newlispEvalStr
Hans-Peter

Locked