comedilib.h: Don't mark 'data' parameter of comedi_data_read_n for SWIG
The 'data' parameter (of type lsampl_t*) for comedi_data_read_n(it,subd,chan,range,aref,data,n) is currently marked as an OUTPUT parameter for SWIG, but we can only do that for single objects, and this one points to an array of objects.
This commit is contained in:
parent
aec40a79aa
commit
43a3ae9a27
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ int comedi_sampl_from_phys(sampl_t *dest,int dst_stride,double *src,
|
|||
int comedi_data_read(comedi_t *it,unsigned int subd,unsigned int chan,
|
||||
unsigned int range,unsigned int aref,lsampl_t *SWIG_OUTPUT(data));
|
||||
int comedi_data_read_n(comedi_t *it,unsigned int subd,unsigned int chan,
|
||||
unsigned int range,unsigned int aref,lsampl_t *SWIG_OUTPUT(data), unsigned int n);
|
||||
unsigned int range,unsigned int aref,lsampl_t *data, unsigned int n);
|
||||
int comedi_data_read_hint(comedi_t *it,unsigned int subd,unsigned int chan,
|
||||
unsigned int range,unsigned int aref);
|
||||
int comedi_data_read_delayed(comedi_t *it,unsigned int subd,unsigned int chan,
|
||||
|
|
Loading…
Add table
Reference in a new issue