Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: exported symbol names #93

Merged
merged 1 commit into from
Apr 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions nidaqmx/_task_modules/triggering/start_trigger.py
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ def anlg_win_trig_when(self):
"""
val = ctypes.c_int()

cfunc = lib_importer.windll.DAQmxGetAnlgWinStartTrigTrigWhen
cfunc = lib_importer.windll.DAQmxGetAnlgWinStartTrigWhen
if cfunc.argtypes is None:
with cfunc.arglock:
if cfunc.argtypes is None:
Expand All @@ -1049,7 +1049,7 @@ def anlg_win_trig_when(self):
@anlg_win_trig_when.setter
def anlg_win_trig_when(self, val):
val = val.value
cfunc = lib_importer.windll.DAQmxSetAnlgWinStartTrigTrigWhen
cfunc = lib_importer.windll.DAQmxSetAnlgWinStartTrigWhen
if cfunc.argtypes is None:
with cfunc.arglock:
if cfunc.argtypes is None:
Expand All @@ -1062,7 +1062,7 @@ def anlg_win_trig_when(self, val):

@anlg_win_trig_when.deleter
def anlg_win_trig_when(self):
cfunc = lib_importer.windll.DAQmxResetAnlgWinStartTrigTrigWhen
cfunc = lib_importer.windll.DAQmxResetAnlgWinStartTrigWhen
if cfunc.argtypes is None:
with cfunc.arglock:
if cfunc.argtypes is None:
Expand Down Expand Up @@ -1676,7 +1676,7 @@ def dig_pattern_trig_when(self):
"""
val = ctypes.c_int()

cfunc = lib_importer.windll.DAQmxGetDigPatternStartTrigTrigWhen
cfunc = lib_importer.windll.DAQmxGetDigPatternStartTrigWhen
if cfunc.argtypes is None:
with cfunc.arglock:
if cfunc.argtypes is None:
Expand All @@ -1692,7 +1692,7 @@ def dig_pattern_trig_when(self):
@dig_pattern_trig_when.setter
def dig_pattern_trig_when(self, val):
val = val.value
cfunc = lib_importer.windll.DAQmxSetDigPatternStartTrigTrigWhen
cfunc = lib_importer.windll.DAQmxSetDigPatternStartTrigWhen
if cfunc.argtypes is None:
with cfunc.arglock:
if cfunc.argtypes is None:
Expand All @@ -1705,7 +1705,7 @@ def dig_pattern_trig_when(self, val):

@dig_pattern_trig_when.deleter
def dig_pattern_trig_when(self):
cfunc = lib_importer.windll.DAQmxResetDigPatternStartTrigTrigWhen
cfunc = lib_importer.windll.DAQmxResetDigPatternStartTrigWhen
if cfunc.argtypes is None:
with cfunc.arglock:
if cfunc.argtypes is None:
Expand Down