Skip to content
Open
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
2 changes: 2 additions & 0 deletions eyex/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ def _initialize_interactor_snapshot(self):
def _event_handler(self, async_data, userParam):
event = c.c_voidp()
behavior = c.c_voidp()
async_data = c.c_void_p(async_data)

self.eyex_dll.txGetAsyncDataContent(async_data, c.byref(event))

Expand All @@ -89,6 +90,7 @@ def _event_handler(self, async_data, userParam):
self.eyex_dll.txReleaseObject(c.byref(event))

def _on_snapshot_committed(self, async_data, param):
async_data = c.c_void_p(async_data)
result = c.c_int(0)
self.eyex_dll.txGetAsyncDataResultCode(async_data, c.pointer(result))

Expand Down