VC functions all use _stdcall
functions exported using .def file
(e.g. AliasFuncName = _FuncName@NumCallArgBytes)
Existing C DLL was revised to have some new call arguments
(revised function names, built to new dll name)
Functions with unrevised call arguments work when calling the new DLL
Functions with revised call arguments do not work when calling the new DLL
(all call arguments are garbage on entry)
Call arguments are several input doubles and a few return double*
Prototype.h call definition matches c …
Run Code Online (Sandbox Code Playgroud)