shared_send_dict(char* dictline) to sent the node list

This commit is contained in:
h_vogt 2017-06-04 00:40:58 +02:00 committed by Holger Vogt
parent e36b028cdb
commit 994d190de5
1 changed files with 10 additions and 2 deletions

View File

@ -600,7 +600,7 @@ ngSpice_Init(SendChar* printfcn, SendStat* statusfcn, ControlledExit* ngspiceexi
if (!bgtr)
nobgtrwanted = TRUE;
immediate = FALSE;
wantevtdata = TRUE;
#ifdef THREADS
/* init the mutexes */
#ifdef HAVE_LIBPTHREAD
@ -1938,5 +1938,13 @@ sharedsync(double *pckttime, double *pcktdelta, double olddelta, double finalt,
}
void shared_send_event(int index, double step, double dvalue, char *svalue, void *pvalue, int len)
{}
{
printf("");
return;
}
void shared_send_dict(char* dictline)
{
printf("%s", dictline);
}