On Thu, Nov 6, 2008 at 5:51 PM, Yuvaraj Athur Raghuvir <[EMAIL PROTECTED]> wrote: > This is what I have with me (from jlib.h in jfe) > > J _stdcall JInit(); /* init instance */ > void _stdcall JSM(J jt, void*callbacks[]); /* set callbacks */ > int _stdcall JDo(J jt,C*); /* run sentence */ > C* _stdcall JGetLocale(J jt); /* get locale */ > int _stdcall JFree(J jt); /* free instance */ > A _stdcall JGetA(J jt,I n,C* name); /* get 3!:1 from name */ > I _stdcall JSetA(J jt,I n,C* name,I x,C* d);/* name=:3!:2 data */ > > What are the corresponding signatures for SetB, GetB, SetM, GetM and the > rest of the APIs that the dll exposes?
I think that would be JSetA and JGetA. > I refer to GetM since that is used in the dll.ijs code. > > I am working on windows. Have you examined http://www.jsoftware.com/help/user/calling_jdll.htm and J's system\examples\data\jdll.h ? -- Raul ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
