Displaying 1 result from an estimated 1 matches for "mywriteconsoleex".
2008 Mar 19
1
R_ParseVector problem: it's cutting off after the decimal point
...= getRUser();
// UImode: RGui, RTerm, LinkDLL
Rp->CharacterMode = LinkDLL;
// function which reads input for R from a console
Rp->ReadConsole = myReadConsole;
// function which writes output from R to a console
Rp->WriteConsole = NULL;
Rp->WriteConsoleEx = myWriteConsoleEx;
// called during i/o, eval, graphics in ProcessEvents
Rp->CallBack = myCallBack;
// handles messages for the user from R
Rp->ShowMessage = myShowconcise Message;
// user interaction: a user is asked a question an should answer
with YesNoCancel (maybe dialog)
Rp->...