We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7627026 commit 364f953Copy full SHA for 364f953
neo/rawio/plexon2rawio/pypl2/pypl2lib.py
@@ -610,7 +610,7 @@ def pl2_get_spike_channel_info_by_name(self, channel_name):
610
611
self.pl2_dll.PL2_GetSpikeChannelInfoByName.argtypes = (
612
ctypes.c_int,
613
- ctypes.c_char * len(channel_name),
+ ctypes.POINTER(ctypes.c_char),
614
ctypes.POINTER(PL2SpikeChannelInfo),
615
)
616
@@ -744,7 +744,7 @@ def pl2_get_spike_channel_data_by_name(self, channel_name):
744
745
self.pl2_dll.PL2_GetSpikeChannelDataByName.argtypes = (
746
747
- ctypes.c_char,
748
ctypes.POINTER(ctypes.c_ulonglong),
749
750
ctypes.POINTER(ctypes.c_ushort),
0 commit comments